From 58ae586d7bf3fb27d0bdfb3a8f39dd7ce4247950 Mon Sep 17 00:00:00 2001 From: Alexandru Date: Tue, 17 Sep 2024 21:33:37 +0300 Subject: [PATCH] eas --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 1f1dd54..72cb236 100644 --- a/app.py +++ b/app.py @@ -13,7 +13,7 @@ app.secret_key = hashlib.md5(os.urandom(32)).hexdigest() def parsetime(value): return time.strftime('%Y-%m-%d %H:%M', time.localtime(value)) -@app.route('/') +@app.route('/gb') def index(): statement = 'SELECT "id", "name", "website", "comment", "date", "ip" FROM "entries" ORDER BY id DESC' cs.execute(statement)