summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/ExternalScripts.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-18 22:33:24 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-18 22:33:24 +0200
commit1edf760850f3b9e939f79b352dbe4e26ae896529 (patch)
tree2033a1219878bb05a9cfdb0c3dd48261427e1504 /module/plugins/hooks/ExternalScripts.py
parentMerge pull request #2053 from jellysheep/patch-5 (diff)
downloadpyload-1edf760850f3b9e939f79b352dbe4e26ae896529.tar.xz
[ExternalScripts] Fix typo
Diffstat (limited to 'module/plugins/hooks/ExternalScripts.py')
-rw-r--r--module/plugins/hooks/ExternalScripts.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/ExternalScripts.py b/module/plugins/hooks/ExternalScripts.py
index 8914cfa6c..6a11f8c6a 100644
--- a/module/plugins/hooks/ExternalScripts.py
+++ b/module/plugins/hooks/ExternalScripts.py
@@ -10,7 +10,7 @@ from module.plugins.internal.utils import encode, fs_join
class ExternalScripts(Addon):
__name__ = "ExternalScripts"
__type__ = "hook"
- __version__ = "0.51"
+ __version__ = "0.52"
__status__ = "testing"
__config__ = [("activated", "bool", "Activated" , True ),
@@ -133,7 +133,7 @@ class ExternalScripts(Addon):
dl_folder = self.pyload.config.get("general", "download_folder")
file = fs_join(dl_folder, pyfile.name)
- args = [script, pyfile.id, pyfile.name, file, pyfile.pluginname, pyfile.url]
+ args = [pyfile.id, pyfile.name, file, pyfile.pluginname, pyfile.url]
self._call("download_failed", args)
@@ -154,7 +154,7 @@ class ExternalScripts(Addon):
def archive_extracted(self, pyfile, archive):
- args = [script, pyfile.id, pyfile.name, archive.filename, archive.out, archive.files]
+ args = [pyfile.id, pyfile.name, archive.filename, archive.out, archive.files]
self._call("archive_extracted", args)