summaryrefslogtreecommitdiffstats
path: root/cgi-bin/list-files.py
diff options
context:
space:
mode:
Diffstat (limited to 'cgi-bin/list-files.py')
-rwxr-xr-xcgi-bin/list-files.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi-bin/list-files.py b/cgi-bin/list-files.py
index 15d6391..4e6048d 100755
--- a/cgi-bin/list-files.py
+++ b/cgi-bin/list-files.py
@@ -4,6 +4,6 @@ import json, os
print("Content-Type: application/json; charset=utf-8")
print("")
-dir_list = os.listdir("uploads")
+dir_list = os.listdir("../uploads")
print(json.dumps(dir_list))