diff options
author | Lorenz Diener <[email protected]> | 2017-12-14 00:37:19 +0100 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2017-12-14 00:37:19 +0100 |
commit | 58dfdfaec58cc7a4e07d516b4b0b1716a80e4d62 (patch) | |
tree | 011bd2a9d01c66ffc96305a569857dfdf40d7292 | |
parent | ae58ae77897ab9293ba41a1875aa05246fa48093 (diff) | |
download | mastodon.py-58dfdfaec58cc7a4e07d516b4b0b1716a80e4d62.tar.gz |
Add supported version in a place where python can read it
-rw-r--r-- | mastodon/Mastodon.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index f6551f0..8aad946 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -69,7 +69,8 @@ class Mastodon: | |||
69 | """ | 69 | """ |
70 | __DEFAULT_BASE_URL = 'https://mastodon.social' | 70 | __DEFAULT_BASE_URL = 'https://mastodon.social' |
71 | __DEFAULT_TIMEOUT = 300 | 71 | __DEFAULT_TIMEOUT = 300 |
72 | 72 | __SUPPORTED_MASTODON_VERSION = "2.1.0" | |
73 | |||
73 | ### | 74 | ### |
74 | # Registering apps | 75 | # Registering apps |
75 | ### | 76 | ### |