fixed newcron bug thanks niphlod

This commit is contained in:
Massimo Di Pierro
2012-06-12 08:22:29 -05:00
parent c1dd059fa7
commit 0c672d4024
2 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -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
View File
@@ -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,