diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2016-01-10 17:17:52 +0100 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2016-01-10 17:17:52 +0100 |
commit | f6803699d342c6cfef1493491b249c00444c799c (patch) | |
tree | b0f8f13ffe75fe2439c307752e4e2c744acf28e0 /module/plugins/internal | |
parent | [ExternalScripts] Update (diff) | |
download | pyload-f6803699d342c6cfef1493491b249c00444c799c.tar.xz |
[Misc] fix #2280
Diffstat (limited to 'module/plugins/internal')
-rw-r--r-- | module/plugins/internal/misc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/misc.py b/module/plugins/internal/misc.py index fa5a2e068..df5814ca6 100644 --- a/module/plugins/internal/misc.py +++ b/module/plugins/internal/misc.py @@ -38,7 +38,7 @@ except ImportError: class misc(object): __name__ = "misc" __type__ = "plugin" - __version__ = "0.20" + __version__ = "0.21" __status__ = "stable" __pattern__ = r'^unmatchable$' @@ -406,7 +406,7 @@ def exists(path): return False -def remove(self, path, trash=True): +def remove(path, trash=True): path = encode(path) if not exists(path): |