]> jfr.im git - erebus.git/commitdiff
eval - make !SYSTEM report stderr too
authorJohn Runyon <redacted>
Sat, 23 Mar 2024 06:34:53 +0000 (00:34 -0600)
committerJohn Runyon <redacted>
Sat, 23 Mar 2024 06:34:53 +0000 (00:34 -0600)
modules/eval.py

index 698b226463a8dd372013fb30adf0065b9fc7d455..3930b6ddc30f9db1004e0ff983c9495d4800dbfc 100644 (file)
@@ -19,9 +19,12 @@ modstart = lib.modstart
 modstop = lib.modstop
 
 # module code
-import os
+import subprocess
 import sys
 
+# import these to make life easier using this module
+import os
+import ctlmod
 
 def module(name):
        return lib.mod(name)
@@ -56,11 +59,13 @@ def system(bot, user, chan, realtarget, *args):
        if chan is not None: replyto = chan
        else: replyto = user
 
-       try: prochandle = os.popen(' '.join(args))
-       except Exception: bot.msg(replyto, "Error: %s %s" % (sys.exc_info()[0], sys.exc_info()[1]))
+       try:
+               proc = subprocess.Popen(' '.join(args), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, close_fds=True)
+       except Exception:
+               bot.msg(replyto, "Error: %s %s" % (sys.exc_info()[0], sys.exc_info()[1]))
        else:
-               for line in prochandle:
-                       bot.msg(replyto, line)
+               for line in proc.stdout:
+                       bot.msg(replyto, line.decode('utf-8', 'surrogateescape'))
 
 @lib.hook('exception', needchan=False, glevel=lib.OWNER)
 @lib.help(None, "cause an exception")