From 0d9d1c01db59d88d1640bd751fe3ae9500117332 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Mon, 20 Sep 2021 21:10:14 +1000 Subject: [PATCH] remove prints --- options.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/options.py b/options.py index 1fb5baf..40043b4 100644 --- a/options.py +++ b/options.py @@ -31,7 +31,6 @@ class PA_PREF(db.Model): ################################################################################ class Options(PA): def __init__(self, request): -# pref=None if 'orig_url' in request.form: url = request.form['orig_url'] else: @@ -68,7 +67,6 @@ class Options(PA): self.folders=False self.noo="Oldest" - print( f"2={pref}" ) if pref: self.grouping=pref.grouping self.how_many=pref.how_many @@ -83,7 +81,6 @@ class Options(PA): self.cwd='static/' + self.path_type self.root=self.cwd - print( f"2={self}" ) # the above are defaults, if we are here, then we have current values, use them instead if request.method=="POST": self.noo=request.form['noo'] @@ -125,5 +122,3 @@ class Options(PA): db.session.add(pref) db.session.commit() - - print( self )