From b21bdc91cbe233ef1fac187f5d41a44ae15fdf21 Mon Sep 17 00:00:00 2001 From: Keegan McAllister Date: Fri, 23 Nov 2012 14:02:47 -0500 Subject: [PATCH] Fix email addresses generated by populate_db --extra-users (imported from commit bdb93e51966ca8c0e20d67cccbe50e80e2592127) --- zephyr/management/commands/populate_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/management/commands/populate_db.py b/zephyr/management/commands/populate_db.py index 8ee9ab7517..c27149e96d 100644 --- a/zephyr/management/commands/populate_db.py +++ b/zephyr/management/commands/populate_db.py @@ -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"]