From 035d7e4f06c595e8a42d8ad6cd1ad6e42a21a4f0 Mon Sep 17 00:00:00 2001 From: pjotrp Date: Fri, 17 Apr 2026 14:38:51 +0200 Subject: Moving patches around so we can use loadpath again --- gn/packages/patches/python-twint-userlist.patch | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 gn/packages/patches/python-twint-userlist.patch (limited to 'gn/packages/patches/python-twint-userlist.patch') diff --git a/gn/packages/patches/python-twint-userlist.patch b/gn/packages/patches/python-twint-userlist.patch deleted file mode 100644 index 1d5b860..0000000 --- a/gn/packages/patches/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 - - -- cgit 1.4.1