Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
tweepy
Commits
a5c206db
Commit
a5c206db
authored
Oct 03, 2009
by
Josh Roesslein
Browse files
Fix streaming API regression. Thanks Pascal Jurgens!
parent
e4767314
Changes
2
Hide whitespace changes
Inline
Side-by-side
CONTRIBUTORS
View file @
a5c206db
...
...
@@ -4,3 +4,5 @@ Thomas Bohmbach, Jr
- GAE fixes
Mark Lango
- Ignore key arguments with value of None
Pascal Jurgens
- Streaming API fix
tweepy/streaming.py
View file @
a5c206db
...
...
@@ -131,7 +131,7 @@ class Stream(object):
# turn json data into status object
if
'in_reply_to_status_id'
in
data
:
status
=
parse_status
(
data
,
self
.
api
)
status
=
parse_status
(
json
.
loads
(
data
)
,
self
.
api
)
if
self
.
listener
.
on_status
(
status
)
==
False
:
self
.
running
=
False
elif
'delete'
in
data
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment