aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Britten <[email protected]>2017-03-03 11:10:04 -0500
committerGitHub <[email protected]>2017-03-03 11:10:04 -0500
commit9a1c7a7147fc53a35b941a73e9c88eaf405a9449 (patch)
tree9033fc49adb6132d61b6c491072a8092c5a2d2aa /mastodon
parent8b4d75961260648b7e123c00ab94861035c6d598 (diff)
downloadmastodon.py-9a1c7a7147fc53a35b941a73e9c88eaf405a9449.tar.gz
fixed missing request_timeout on app creation
Diffstat (limited to 'mastodon')
-rw-r--r--mastodon/Mastodon.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index a50c5ab..1888436 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -31,7 +31,7 @@ class Mastodon:
31 # Registering apps 31 # Registering apps
32 ### 32 ###
33 @staticmethod 33 @staticmethod
34 def create_app(client_name, scopes = ['read', 'write', 'follow'], redirect_uris = None, to_file = None, api_base_url = __DEFAULT_BASE_URL): 34 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):
35 """ 35 """
36 Create a new app with given client_name and scopes (read, write, follow) 36 Create a new app with given client_name and scopes (read, write, follow)
37 37
Powered by cgit v1.2.3 (git 2.41.0)