From 252153e16a912688adef9242b06d2ce49d1734f4 Mon Sep 17 00:00:00 2001 From: Scot Hacker Date: Fri, 6 Apr 2018 23:51:17 -0700 Subject: [PATCH] Always use example.com for fake users --- todo/management/commands/hopper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/todo/management/commands/hopper.py b/todo/management/commands/hopper.py index 9d987c8..933656b 100644 --- a/todo/management/commands/hopper.py +++ b/todo/management/commands/hopper.py @@ -69,7 +69,7 @@ class Command(BaseCommand): username=username, first_name=fake.first_name(), last_name=fake.last_name(), - email=fake.email(), + email="{}@example.com".format(username), password="todo") if username in ['user1', 'user2']: