diff options
author | Aira Kyytsönen <akyytson@local> | 2023-12-12 01:59:51 +0200 |
---|---|---|
committer | Aira Kyytsönen <akyytson@local> | 2023-12-12 01:59:51 +0200 |
commit | 84d1277c408038ab0df6179659c68ac7f08a098f (patch) | |
tree | 8a6f374e9810198a8559d8a236f8179c909c1fe7 /app.py | |
parent | 3dc9e71b7c733e7fe6fe9e226ad363f84a2e1dee (diff) |
Changing database variable D to db. Making error and infomessages dissapear.
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ else: app.secret_key = token_hex() from db.db import DB -D = DB() +db = DB() import routes.base import routes.answer |