add_new_user: Fix mention of running "python manage.py".

This won't work on Python 3.
This commit is contained in:
Tim Abbott 2018-11-06 13:27:57 -08:00
parent 8b661f2f03
commit e8290ccd6d
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ and will otherwise fall back to the zulip realm."""
.order_by('-string_id').first()
if realm is None:
print('Warning: Using default zulip realm, which has an unusual configuration.\n'
'Try running `python manage.py add_new_realm`, and then running this again.')
'Try running `manage.py add_new_realm`, and then running this again.')
valid_realm = Realm.objects.get(string_id='zulip')
domain = 'zulip.com'
else: