You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
489 B
19 lines
489 B
diff --git a/twint/cli.py b/twint/cli.py
|
|
index f463d68..68244c9 100644
|
|
--- a/twint/cli.py
|
|
+++ b/twint/cli.py
|
|
@@ -69,10 +69,10 @@ def loadUserList(ul, _type):
|
|
else:
|
|
userlist = ul.split(",")
|
|
if _type == "search":
|
|
- un = ""
|
|
- for user in userlist:
|
|
- un += "%20OR%20from%3A" + user
|
|
- return un[15:]
|
|
+ un = userlist[0]
|
|
+ for user in userlist[1:]:
|
|
+ un += " OR from:" + user
|
|
+ return un
|
|
return userlist
|
|
|
|
|
|
|