Skip to content

Commit

Permalink
Merge pull request #9 from vmtyler/patch-2
Browse files Browse the repository at this point in the history
fixed missing change
  • Loading branch information
halcy committed Mar 15, 2017
2 parents 69a3902 + be6c248 commit 6a65a31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mastodon/Mastodon.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def create_app(client_name, scopes = ['read', 'write', 'follow'], redirect_uris
else:
request_data['redirect_uris'] = 'urn:ietf:wg:oauth:2.0:oob';

response = requests.post(api_base_url + '/api/v1/apps', data = request_data, timeout = self.request_timeout).json()
response = requests.post(api_base_url + '/api/v1/apps', data = request_data, timeout = request_timeout).json()
except:
raise MastodonNetworkError("Could not complete request.")

Expand Down

0 comments on commit 6a65a31

Please sign in to comment.