This commit is contained in:
2000-Trek 2023-06-09 22:27:45 +02:00
parent d209453903
commit c5b480374a

View file

@ -12,7 +12,7 @@ conn = sqlite3.connect(db_path, check_same_thread=False)
c = conn.cursor()
app = Flask(__name__)
key = str(uuid.uuid4.hex)
key = str(uuid.uuid4().hex)
app.secret_key = key
socketio = SocketIO(app)