From 930da6a6bac1edb4e2dc13a750da3a1093a7b3eb Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 19 Oct 2019 10:17:53 -0700 Subject: [PATCH] Use a real invalid email in supybot.authors.unknown --- src/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/__init__.py b/src/__init__.py index 883b8fa14..e4c82177a 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -64,7 +64,7 @@ class authors(object): # This is basically a bag. grantbow = Author('Grant Bowman', 'Grantbow', 'grantbow@grantbow.com') stepnem = Author('Štěpán Němec', 'stepnem', 'stepnem@gmail.com') progval = Author('Valentin Lorentz', 'ProgVal', 'progval@gmail.com') - unknown = Author('Unknown author', 'unknown', 'unknown@supybot.org') + unknown = Author('Unknown author', 'unknown', 'unknown@email.invalid') # Let's be somewhat safe about this. def __getattr__(self, attr):