From 1edf760850f3b9e939f79b352dbe4e26ae896529 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Sun, 18 Oct 2015 22:33:24 +0200 Subject: [ExternalScripts] Fix typo --- module/plugins/hooks/ExternalScripts.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'module/plugins/hooks/ExternalScripts.py') 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) -- cgit v1.2.3