projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ea3899
)
Improve error log message in Stream.on_data
author
Harmon
<Harmon758@gmail.com>
Thu, 28 Jan 2021 04:08:39 +0000
(22:08 -0600)
committer
Harmon
<Harmon758@gmail.com>
Thu, 28 Jan 2021 04:08:39 +0000
(22:08 -0600)
tweepy/streaming.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/streaming.py
b/tweepy/streaming.py
index 69c370bf7b60c2f8ad2ed351f76e3eec1c42c9cd..00cb745085bc52052654add6569168ddfa26bbeb 100644
(file)
--- a/
tweepy/streaming.py
+++ b/
tweepy/streaming.py
@@
-262,7
+262,7
@@
class Stream:
if "warning" in data:
return self.on_warning(data["warning"])
- log.error("
U
nknown message type: %s", raw_data)
+ log.error("
Received u
nknown message type: %s", raw_data)
def on_status(self, status):
"""This is called when a status is received."""