X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~matthewv/git?a=blobdiff_plain;f=commands.py;h=114f7b0e65a705832f08c068705c8e65a6ad1368;hb=174d3c722e14230458c9fa205a680476f8d1f708;hp=e7a0de3da12d7c37dd392471e760d16eeb498c6f;hpb=71eaf5c149b12fd718e34a7d2f5941074ee8ba97;p=irc.git diff --git a/commands.py b/commands.py index e7a0de3..114f7b0 100644 --- a/commands.py +++ b/commands.py @@ -154,9 +154,9 @@ def unitq(bot, cmd, nick, conn, public): conn.notice(nick, "syntax: units arg1 as arg2") return if args[1]=='?': - sin,sout=os.popen2(["units","--verbose",args[0]],"r") + sin,sout=os.popen4(["units","--verbose","--",args[0]],"r") else: - sin,sout=os.popen2(["units","--verbose",args[0],args[1]],"r") + sin,sout=os.popen4(["units","--verbose","--",args[0],args[1]],"r") sin.close() res=sout.readlines() #popen2 doesn't clean up the child properly. Do this by hand