summaryrefslogtreecommitdiff
path: root/Mailman/Utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman/Utils.py')
-rw-r--r--Mailman/Utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py
index f67bdc6b2..3a55695e1 100644
--- a/Mailman/Utils.py
+++ b/Mailman/Utils.py
@@ -396,13 +396,13 @@ def ObscureEmail(addr, for_text=0):
if for_text:
return string.replace(addr, "@", " at ")
else:
- return string.replace(addr, "@", "__at__")
+ return string.replace(addr, "@", "--at--")
def UnobscureEmail(addr):
"""Invert ObscureEmail() conversion."""
# Contrived to act as an identity operation on already-unobscured
# emails, so routines expecting obscured ones will accept both.
- return string.replace(addr, "__at__", "@")
+ return string.replace(addr, "--at--", "@")