Fixing streaming

This commit is contained in:
Mike Helmick 2013-05-02 15:12:36 -04:00
parent e18bff97d3
commit c3e84bc8ee
10 changed files with 290 additions and 81 deletions

View file

@ -46,3 +46,8 @@ class TwythonRateLimitError(TwythonError):
if isinstance(retry_after, int):
msg = '%s (Retry after %d seconds)' % (msg, retry_after)
TwythonError.__init__(self, msg, error_code=error_code)
class TwythonStreamError(TwythonError):
"""Test"""
pass