Fix email addresses generated by populate_db --extra-users

(imported from commit bdb93e51966ca8c0e20d67cccbe50e80e2592127)
This commit is contained in:
Keegan McAllister 2012-11-23 14:02:47 -05:00
parent f1e644ece8
commit b21bdc91cb

View File

@ -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"]