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
6d927a9a
Commit
6d927a9a
authored
Jun 06, 2015
by
john
Browse files
Fixed character encoding.
parent
bad33da5
Changes
1
Hide whitespace changes
Inline
Side-by-side
tweepy/streaming.py
View file @
6d927a9a
...
...
@@ -424,7 +424,7 @@ class Stream(object):
if
languages
:
self
.
body
[
'language'
]
=
u
','
.
join
(
map
(
str
,
languages
))
if
filter_level
:
self
.
body
[
'filter_level'
]
=
filter_level
self
.
body
[
'filter_level'
]
=
unicode
(
filter_level
,
encoding
)
self
.
session
.
params
=
{
'delimited'
:
'length'
}
self
.
host
=
'stream.twitter.com'
self
.
_start
(
async
)
...
...
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