key fix?
This commit is contained in:
parent
e1b573e32c
commit
d209453903
1 changed files with 2 additions and 1 deletions
3
main.py
3
main.py
|
@ -12,7 +12,8 @@ conn = sqlite3.connect(db_path, check_same_thread=False)
|
||||||
c = conn.cursor()
|
c = conn.cursor()
|
||||||
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
app.secret_key = uuid.uuid4().hex
|
key = str(uuid.uuid4.hex)
|
||||||
|
app.secret_key = key
|
||||||
socketio = SocketIO(app)
|
socketio = SocketIO(app)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue