Converting single quotes to double to stay consistent

This commit is contained in:
Stephen Meier 2021-01-22 23:11:17 -05:00
parent ddbbf8b5c5
commit f383a83a4d

View file

@ -1426,9 +1426,9 @@ def create_superuser():
from os import environ
if ("EVENNIA_SUPERUSER_USERNAME" in environ) and ("EVENNIA_SUPERUSER_PASSWORD" in environ):
from evennia.accounts.models import AccountDB
superuser = AccountDB.objects.create_superuser(os.environ.get('EVENNIA_SUPERUSER_USERNAME'),
os.environ.get('EVENNIA_SUPERUSER_EMAIL'),
os.environ.get('EVENNIA_SUPERUSER_PASSWORD'))
superuser = AccountDB.objects.create_superuser(os.environ.get("EVENNIA_SUPERUSER_USERNAME"),
os.environ.get("EVENNIA_SUPERUSER_EMAIL"),
os.environ.get("EVENNIA_SUPERUSER_PASSWORD"))
superuser.save()
else:
django.core.management.call_command("createsuperuser", interactive=True)