diff options
Diffstat (limited to 'server.py')
-rw-r--r-- | server.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -22,7 +22,8 @@ def setup(): else: s = './templates/site/' top_dirs = [ - x for x in os.listdir(s) if os.path.isdir(s + x) + x for x in os.listdir(s) \ + if os.path.isdir(s + x) and not x.startswith('.') ] app.config.update( { |