Merge pull request #936 from josdion/hermes

fix creation of the random api_key
pull/997/head
morpheus65535 4 years ago committed by GitHub
commit 5767cae6b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -52,7 +52,7 @@ import logging
# create random api_key if there's none in config.ini
if not settings.auth.apikey:
from binascii import hexlify
settings.auth.apikey = str(hexlify(os.urandom(16)))
settings.auth.apikey = hexlify(os.urandom(16)).decode()
with open(os.path.join(args.config_dir, 'config', 'config.ini'), 'w+') as handle:
settings.write(handle)

Loading…
Cancel
Save