diff options
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))) |