Changed admin full name to "Adminstrator".

This commit is contained in:
Emanuel Schuetze 2012-10-30 21:02:39 +01:00
parent 053c3be030
commit f62b7f299b

View File

@ -223,7 +223,7 @@ def create_or_reset_admin_user():
except User.DoesNotExist:
admin = User()
admin.username = 'admin'
admin.last_name = 'Admin User'
admin.last_name = 'Administrator'
print("Created default admin user")
admin.is_superuser = True