From 236582f5e9b9299d40387a288b6a94ddcc38b747 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 2 Sep 2003 08:09:58 +0000 Subject: [PATCH] Changed a popen2 to popen4. --- plugins/Debian.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Debian.py b/plugins/Debian.py index fc2b6913d..cb7c947c4 100644 --- a/plugins/Debian.py +++ b/plugins/Debian.py @@ -118,7 +118,7 @@ class Debian(callbacks.Privmsg, PeriodicFileDownloader): if self.usePythonZegrep: fd = gzip.open(self.contents) fd = ifilter(imap(lambda line: r.search(line), fd)) - (fd, _) = popen2.popen2(['zegrep', regexp, self.contents]) + (fd, _) = popen2.popen4(['zegrep', regexp, self.contents]) packages = [] for line in fd: try: