From 724d9b9a2e40f40125213f1b55d3d170cb9ca54b Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Sat, 17 Apr 2021 17:46:37 +1000 Subject: [PATCH] debugs / comments --- files.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/files.py b/files.py index 1b47d19..171820e 100644 --- a/files.py +++ b/files.py @@ -132,10 +132,10 @@ def ViewingOptions( request ): how_many="50" offset=0 size=128 - print( f"ViewingOptions( {request.method} )" ) if 'files_sp' in request.path: folders=True - cwd='static/storage' + # this is the default as 'Storage' is the path_type in the DB + cwd='static/Storage' else: folders=False cwd=None @@ -153,7 +153,6 @@ def ViewingOptions( request ): folders=True cwd = request.form['cwd'] - print( f"setting cwd basedon form: {cwd}" ) if 'prev' in request.form: offset -= int(how_many) if offset < 0: