fixed newcron bug thanks niphlod
This commit is contained in:
@@ -1 +1 @@
|
||||
Version 2.00.0 (2012-06-11 14:29:03) dev
|
||||
Version 2.00.0 (2012-06-12 08:22:25) dev
|
||||
|
||||
+5
-1
@@ -224,7 +224,11 @@ class cronlauncher(threading.Thread):
|
||||
|
||||
def run(self):
|
||||
import subprocess
|
||||
proc = subprocess.Popen(self.cmd.split(),
|
||||
if isinstance(self.cmd, (list,tuple)):
|
||||
cmd = self.cmd
|
||||
else:
|
||||
cmd = self.cmd.split()
|
||||
proc = subprocess.Popen(cmd,
|
||||
stdin=subprocess.PIPE,
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE,
|
||||
|
||||
Reference in New Issue
Block a user