Skip to content

Commit

Permalink
Merge pull request #8 from vmtyler/patch-1
Browse files Browse the repository at this point in the history
fixed missing request_timeout on app creation
  • Loading branch information
halcy committed Mar 3, 2017
2 parents 8b4d759 + 9a1c7a7 commit 915be7f
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 @@ -31,7 +31,7 @@ class Mastodon:
# Registering apps
###
@staticmethod
def create_app(client_name, scopes = ['read', 'write', 'follow'], redirect_uris = None, to_file = None, api_base_url = __DEFAULT_BASE_URL):
def create_app(client_name, scopes = ['read', 'write', 'follow'], redirect_uris = None, to_file = None, api_base_url = __DEFAULT_BASE_URL, request_timeout = __DEFAULT_TIMEOUT):
"""
Create a new app with given client_name and scopes (read, write, follow)
Expand Down

0 comments on commit 915be7f

Please sign in to comment.