diff options
Diffstat (limited to 'expo/fileAbstraction.py')
-rw-r--r-- | expo/fileAbstraction.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/expo/fileAbstraction.py b/expo/fileAbstraction.py index 299a488..94b8b0c 100644 --- a/expo/fileAbstraction.py +++ b/expo/fileAbstraction.py @@ -10,7 +10,7 @@ def listdir(*path): root = os.path.join(settings.FILES, *strippedpath ) l = "" #l = root + "\n" - #isdir = os.path.isdir(root) + isdir = os.path.isdir(root) #This seems to be required for os.path.isdir to work... #l += str(isdir) + "\n" for p in os.listdir(root): if os.path.isdir(os.path.join(root, p)): |