diff options
-rwxr-xr-x | install.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ args['dbpwd'] = input('4/10 DB password []: ') or '' assert call(['createuser', args['dbuser'], '-U', args['dbadmin']]) == 0, 'Could not create DB user' -args['secret_key'] = os.urandom(32).encode('base-64').strip() +args['secret_key'] = os.urandom(32).decode('base-64').strip() args['install_locale'] = input('51/10 Locale [sv_SE.UTF-8]: ') or 'sv_SE.UTF-8' default_country = args['install_locale'].split('_')[0] args['install_country'] = input('6/10 Country [%s]: ' % default_country) or default_country |