diff options
-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 d5c6225..c835bac 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -857,7 +857,7 @@ class Mastodon: | |||
857 | This method blocks forever, calling callbacks on 'listener' for | 857 | This method blocks forever, calling callbacks on 'listener' for |
858 | incoming events. | 858 | incoming events. |
859 | """ | 859 | """ |
860 | return self.__stream('/api/v1/streaming/hashtag', listener, params={'tag': tag}) | 860 | return self.__stream("/api/v1/streaming/hashtag?tag={}".format(tag), listener) |
861 | 861 | ||
862 | ### | 862 | ### |
863 | # Internal helpers, dragons probably | 863 | # Internal helpers, dragons probably |