mirror of https://github.com/zulip/zulip.git
add_new_user: Fix mention of running "python manage.py".
This won't work on Python 3.
This commit is contained in:
parent
8b661f2f03
commit
e8290ccd6d
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue