[conf] fix secret tempfile creation
This commit is contained in:
parent
7060d201ec
commit
d54dcd641d
|
@ -120,7 +120,7 @@ SECRET = CONFIG.get('project', {}).get(
|
||||||
if not SECRET:
|
if not SECRET:
|
||||||
# TODO: Create a temporary secret
|
# TODO: Create a temporary secret
|
||||||
_, SECRET = tempfile.mkstemp()
|
_, SECRET = tempfile.mkstemp()
|
||||||
with open('SECRET', 'w') as secret_file:
|
with open(SECRET, 'w') as secret_file:
|
||||||
secret_file.write(str(uuid.uuid4()))
|
secret_file.write(str(uuid.uuid4()))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue