Made sure to handle the case if an improper @ symbol is in the handles.

This commit is contained in:
NotoriousRebel
2019-02-15 23:02:16 -05:00
parent 7409dc678f
commit 74cc26e998
+2
View File
@@ -47,6 +47,8 @@ class search_twitter:
if '...' in handle:
handle = handle[:handle.index('.')]
handles.add(handle)
if '@' in handles:
handles.remove('@')
return handles
def process(self):