From 9dcb25723e1cf14c2344946a96e9d8f98cc4cf0e Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Thu, 30 Jul 2020 13:44:34 +0200 Subject: [PATCH] ony.me -> example.com --- management/commands/anonymize_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/management/commands/anonymize_data.py b/management/commands/anonymize_data.py index 9fc0e21..89e13c8 100644 --- a/management/commands/anonymize_data.py +++ b/management/commands/anonymize_data.py @@ -18,7 +18,7 @@ class Command(BaseCommand): cur.execute("UPDATE auth_user SET " "first_name = 'Anne', " "last_name = 'Onyme', " - "email = 'anne@ony.me';") + "email = 'anonymous@example.com';") cur.execute("UPDATE member_club SET " - "email = 'anne@ony.me';") + "email = 'anonymous@example.com';") cur.close()