From 477dbddbdf88b4cac2773dfce74b410fcbb84f00 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 24 Jul 2013 14:59:36 -0400 Subject: [PATCH] Hack to make populate_db still work during domain transition. (imported from commit bd1500b49080c277edba5400c315c9824fcc4ac8) --- zephyr/management/commands/populate_db.py | 1 + 1 file changed, 1 insertion(+) diff --git a/zephyr/management/commands/populate_db.py b/zephyr/management/commands/populate_db.py index 8331f5d733..c353ad163a 100644 --- a/zephyr/management/commands/populate_db.py +++ b/zephyr/management/commands/populate_db.py @@ -118,6 +118,7 @@ class Command(BaseCommand): realms = {} for realm in Realm.objects.all(): realms[realm.domain] = realm + realms['zulip.com'] = realms['humbughq.com'] # Create test Users (UserProfiles are automatically created, # as are subscriptions to the ability to receive personals).