aboutsummaryrefslogtreecommitdiff
path: root/python-twint-userlist.patch
diff options
context:
space:
mode:
Diffstat (limited to 'python-twint-userlist.patch')
-rw-r--r--python-twint-userlist.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/python-twint-userlist.patch b/python-twint-userlist.patch
deleted file mode 100644
index 1d5b860..0000000
--- a/python-twint-userlist.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-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
-
-