diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-08-17 16:11:13 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-08-17 16:11:13 +0200 |
commit | 208b857c3f9b9233037847b9c5d98ab9e958ce19 (patch) | |
tree | 850f58379c38e7a91040f2a1415545954ab1036c /module/utils | |
parent | Merge (diff) | |
download | pyload-208b857c3f9b9233037847b9c5d98ab9e958ce19.tar.xz |
renamed default_mobile to mobile
Diffstat (limited to 'module/utils')
-rw-r--r-- | module/utils/fs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/module/utils/fs.py b/module/utils/fs.py index 631b25002..9b9eb9040 100644 --- a/module/utils/fs.py +++ b/module/utils/fs.py @@ -38,6 +38,7 @@ def exists(path): def makedirs(path, mode=0755): return os.makedirs(fs_encode(path), mode) +# fs_decode? def listdir(path): return os.listdir(fs_encode(path)) |