chiark / gitweb /
add a note about the broken "define" code
[irc.git] / commands.py
index e7a0de3da12d7c37dd392471e760d16eeb498c6f..114f7b0e65a705832f08c068705c8e65a6ad1368 100644 (file)
@@ -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