diff options
author | Lorenz Diener <[email protected]> | 2018-01-29 14:18:23 +0100 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2018-01-29 14:18:23 +0100 |
commit | be014bb88a4b1eba892dc6b3d62453877066e05e (patch) | |
tree | 1912a35c059c6a18a1fdce21980d50331ce4f559 | |
parent | 569a13ee80304f4d9ef94cc4a116db78a9cb7583 (diff) | |
download | mastodon.py-be014bb88a4b1eba892dc6b3d62453877066e05e.tar.gz |
Fix typo that made test break
-rw-r--r-- | mastodon/Mastodon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 80960b9..183deab 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -360,7 +360,7 @@ class Mastodon: | |||
360 | """ | 360 | """ |
361 | Internal, non-version-checking helper that does the same as instance() | 361 | Internal, non-version-checking helper that does the same as instance() |
362 | """ | 362 | """ |
363 | return self.__api_request('GET', '/api/v1/instance') | 363 | return self.__api_request('GET', '/api/v1/instance/') |
364 | 364 | ||
365 | @api_version("2.1.2", "2.1.2") | 365 | @api_version("2.1.2", "2.1.2") |
366 | def instance_activity(self): | 366 | def instance_activity(self): |