From 128bd56bc04fe41f7c0286b62ebe750073f00eb9 Mon Sep 17 00:00:00 2001
From: 2000-Trek
Date: Sat, 25 Nov 2023 01:02:18 +0100
Subject: [PATCH] allow ,
---
Website/__init__.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Website/__init__.py b/Website/__init__.py
index 87ec39c..ccd81b7 100644
--- a/Website/__init__.py
+++ b/Website/__init__.py
@@ -83,7 +83,7 @@ def create_app(test_config=None):
users = c.fetchall()
text = ""
for i in users:
- text = text + f'{escape(i[1])}: {i[2]}€
'
+ text = text + f'{escape(i[1])}: {i[2]}€
'
return '''
@@ -137,7 +137,7 @@ def create_app(test_config=None):
{escape(user[1])} : {user[2]}€
-
+
Tags: