forked from bton/matekasse
making the sekret key an hex
This commit is contained in:
parent
b6dabd2ad8
commit
e1b573e32c
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -12,7 +12,7 @@ conn = sqlite3.connect(db_path, check_same_thread=False)
|
|||
c = conn.cursor()
|
||||
|
||||
app = Flask(__name__)
|
||||
app.secret_key = str(uuid.uuid4())
|
||||
app.secret_key = uuid.uuid4().hex
|
||||
socketio = SocketIO(app)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue