We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3ee6588 + 582ccc3 commit 91feba2Copy full SHA for 91feba2
twitter/api.py
@@ -3133,7 +3133,7 @@ def GetStreamFilter(self,
3133
track=None,
3134
locations=None,
3135
delimited=None,
3136
- stall_warning=None):
+ stall_warnings=None):
3137
'''Returns a filtered view of public statuses.
3138
3139
Args:
@@ -3164,8 +3164,8 @@ def GetStreamFilter(self,
3164
data['locations'] = ','.join(locations)
3165
if delimited is not None:
3166
data['delimited'] = str(delimited)
3167
- if delimited is not None:
3168
- data['stall_warning'] = str(stall_warning)
+ if stall_warnings is not None:
+ data['stall_warnings'] = str(stall_warnings)
3169
3170
json = self._RequestStream(url, 'POST', data=data)
3171
for line in json.iter_lines():
0 commit comments