fix creation of the random api_key

This commit is contained in:
josdion 2020-04-17 13:36:45 +03:00
parent 82975e31c8
commit 2ca673c24c
1 changed files with 1 additions and 1 deletions

View File

@ -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)