diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-12-29 01:59:39 +0100 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-12-29 01:59:39 +0100 |
commit | bcdca8fbc8901fc1e327ef534eb6f86e82bf77f5 (patch) | |
tree | fbf761ef0854688430c6b948f865fd620ce43c15 | |
parent | [Extractor] Version up (diff) | |
download | pyload-bcdca8fbc8901fc1e327ef534eb6f86e82bf77f5.tar.xz |
[misc] fix fsjoin
-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 2cd843109..80c91bf24 100644 --- a/module/plugins/internal/misc.py +++ b/module/plugins/internal/misc.py @@ -32,7 +32,7 @@ except ImportError: class misc(object): __name__ = "misc" __type__ = "plugin" - __version__ = "0.11" + __version__ = "0.12" __status__ = "stable" __pattern__ = r'^unmatchable$' @@ -421,7 +421,7 @@ def fsjoin(*args): Like os.path.join, but encoding aware (for safe-joining see `safejoin`) """ - return encode(os.path.join(args)) + return encode(os.path.join(*args)) def remove_chars(value, repl): |