summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--expo/fileAbstraction.py2
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)):