mirror of
https://github.com/zulip/zulip.git
synced 2026-07-15 21:03:26 +08:00
Fix email addresses generated by populate_db --extra-users
(imported from commit bdb93e51966ca8c0e20d67cccbe50e80e2592127)
This commit is contained in:
parent
f1e644ece8
commit
b21bdc91cb
@ -115,7 +115,7 @@ class Command(BaseCommand):
|
||||
("Prospero from The Tempest", "prospero@humbughq.com"),
|
||||
("Cordelia Lear", "cordelia@humbughq.com"), ("King Hamlet", "hamlet@humbughq.com")]
|
||||
for i in xrange(options["extra_users"]):
|
||||
names.append(('Extra User %d' % (i,), 'extrauser%d' % (i,)))
|
||||
names.append(('Extra User %d' % (i,), 'extrauser%d@humbughq.com' % (i,)))
|
||||
create_users(realms, names)
|
||||
# Create public streams.
|
||||
stream_list = ["Verona", "Denmark", "Scotland", "Venice", "Rome"]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user