diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-12-29 15:25:25 +0100 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-12-29 15:25:25 +0100 |
commit | 2c3782dc4bbbd4ba47c541807181070502e17268 (patch) | |
tree | 6889d881f9862560381d8436ec292c430a9ea86a /module/plugins/internal/Container.py | |
parent | [ExternalScripts] Fix https://github.com/pyload/pyload/issues/2225 (diff) | |
parent | added missing self (diff) | |
download | pyload-2c3782dc4bbbd4ba47c541807181070502e17268.tar.xz |
Merge pull request #2228 from ckaeslin/patch-1
[Container] Fix global name 'pyfile' is not defined
Diffstat (limited to 'module/plugins/internal/Container.py')
-rw-r--r-- | module/plugins/internal/Container.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/internal/Container.py b/module/plugins/internal/Container.py index db14a286e..9255bade7 100644 --- a/module/plugins/internal/Container.py +++ b/module/plugins/internal/Container.py @@ -48,7 +48,7 @@ class Container(Crypter): def _delete_tmpfile(self): if self.pyfile.name.startswith("tmp_"): - self.remove(pyfile.url, trash=False) + self.remove(self.pyfile.url, trash=False) def _make_tmpfile(self): |