aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mastodon/streaming.py')
-rw-r--r--mastodon/streaming.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mastodon/streaming.py b/mastodon/streaming.py
index 3df3298..4941ace 100644
--- a/mastodon/streaming.py
+++ b/mastodon/streaming.py
@@ -56,7 +56,7 @@ class StreamListener(object):
56 line = raw_line.decode('utf-8') 56 line = raw_line.decode('utf-8')
57 except UnicodeDecodeError as err: 57 except UnicodeDecodeError as err:
58 six.raise_from( 58 six.raise_from(
59 MastodonMalformedEventError("Malformed UTF-8", line), 59 MastodonMalformedEventError("Malformed UTF-8"),
60 err 60 err
61 ) 61 )
62 62
Powered by cgit v1.2.3 (git 2.41.0)