Update create_user management command.

notify_new_user was recently moved to zerver.lib.actions from
zerver.views and this wasn't properly updated. This would give an
error when doing a `manage.py create_user` from the command line.
This commit is contained in:
Walter Heck 2015-11-09 01:58:18 +01:00 committed by Tim Abbott
parent 9b4c440e0d
commit f145b01d91

View File

@ -11,7 +11,7 @@ from django.core import validators
from zerver.models import Realm, get_realm, email_to_username
from zerver.lib.actions import do_create_user
from zerver.views import notify_new_user
from zerver.lib.actions import notify_new_user
from zerver.lib.initial_password import initial_password
from six.moves import input