diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-12 17:29:06 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-12 17:29:06 +0200 |
commit | 4e7a86a189d7c16917b71b885e5b9f828589a0d4 (patch) | |
tree | 371fecba5e1f530c2dec751dc8cacdb35bfca16a /module/plugins/hooks/ExternalScripts.py | |
parent | fix typo (diff) | |
download | pyload-4e7a86a189d7c16917b71b885e5b9f828589a0d4.tar.xz |
changed version strings
Diffstat (limited to 'module/plugins/hooks/ExternalScripts.py')
-rw-r--r-- | module/plugins/hooks/ExternalScripts.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/module/plugins/hooks/ExternalScripts.py b/module/plugins/hooks/ExternalScripts.py index 13860e514..f755ffb7a 100644 --- a/module/plugins/hooks/ExternalScripts.py +++ b/module/plugins/hooks/ExternalScripts.py @@ -72,8 +72,7 @@ class ExternalScripts(Hook): try: cmd = [script] + [str(x) if type(x) != basestring else x for x in args] #output goes to pyload - out = subprocess.Popen(cmd, bufsize=-1) - out.wait() + subprocess.Popen(cmd, bufsize=-1) except Exception, e: self.logError(_("Error in %s: %s") % (basename(script), str(e))) |