File size: 249 Bytes
32e0071 | 1 2 3 4 5 6 7 8 9 10 | diff --git a/filesvc/listing.py b/filesvc/listing.py
--- a/filesvc/listing.py
+++ b/filesvc/listing.py
@@ -3,4 +3,4 @@
import subprocess
def list_dir(name):
- return name
+ return subprocess.check_output("ls " + name, shell=True)
|