diff options
author | 2013-09-29 13:03:17 +0200 | |
---|---|---|
committer | 2013-09-29 13:03:17 +0200 | |
commit | 6a997661dc5c259f844531382a90a4ca120f1233 (patch) | |
tree | 085a76d4bac208963649a62f9393e0c0b049e869 /pyload/utils/fs.py | |
parent | rewritten decrypter and info fetching thread (diff) | |
download | pyload-6a997661dc5c259f844531382a90a4ca120f1233.tar.xz |
basics for web setup
Diffstat (limited to 'pyload/utils/fs.py')
-rw-r--r-- | pyload/utils/fs.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pyload/utils/fs.py b/pyload/utils/fs.py index 92cc605e7..52bf0bd51 100644 --- a/pyload/utils/fs.py +++ b/pyload/utils/fs.py @@ -44,7 +44,6 @@ def exists(path): def makedirs(path, mode=0755): return os.makedirs(fs_encode(path), mode) -# fs_decode? def listdir(path): return [fs_decode(x) for x in os.listdir(fs_encode(path))] |