diff options
Diffstat (limited to 'pyload')
| -rw-r--r-- | pyload/plugins/addons/ExternalScripts.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/pyload/plugins/addons/ExternalScripts.py b/pyload/plugins/addons/ExternalScripts.py index de8afda5f..b1a9420bb 100644 --- a/pyload/plugins/addons/ExternalScripts.py +++ b/pyload/plugins/addons/ExternalScripts.py @@ -73,6 +73,7 @@ class ExternalScripts(Hook):      def callScript(self, script, *args):          try:              cmd = [script] + [str(x) if not isinstance(x, basestring) else x for x in args] +            self.logDebug("Executing %(script)s: %(cmd)s" % {"script": os.path.abspath(script), "cmd": " ".join(cmd)})              #output goes to pyload              subprocess.Popen(cmd, bufsize=-1)          except Exception, e: | 
