aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman
diff options
context:
space:
mode:
authorYasuhito FUTATSUKI at POEM <futatuki@poem.co.jp>2018-05-26 14:06:05 +0900
committerYasuhito FUTATSUKI at POEM <futatuki@poem.co.jp>2018-05-26 14:06:05 +0900
commit8ae71da2a19374ebc7bd4e90cfb4c8e3cc8ece46 (patch)
treed440897ed884edfbb6824bb3302d1bcd3654284d /Mailman
parenta4d68f6e3632c2dc2883ed3cd230e74bf04f5013 (diff)
parent9eb3476df5165581a809f8c928ab42b32b766ec3 (diff)
downloadmailman2-8ae71da2a19374ebc7bd4e90cfb4c8e3cc8ece46.tar.gz
mailman2-8ae71da2a19374ebc7bd4e90cfb4c8e3cc8ece46.tar.xz
mailman2-8ae71da2a19374ebc7bd4e90cfb4c8e3cc8ece46.zip
merge lp:mailman 2.1 up to rev 1756
Diffstat (limited to '')
-rw-r--r--Mailman/Gui/GUIBase.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Gui/GUIBase.py b/Mailman/Gui/GUIBase.py
index 32d19929..95d7d177 100644
--- a/Mailman/Gui/GUIBase.py
+++ b/Mailman/Gui/GUIBase.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2015 by the Free Software Foundation, Inc.
+# Copyright (C) 2002-2018 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -173,6 +173,7 @@ class GUIBase:
doc.addError(_('Invalid value for variable: %(property)s'))
# This is the parent of MMBadEmailError and MMHostileAddress
except Errors.EmailAddressError, error:
+ error = Utils.websafe(str(error))
doc.addError(
_('Bad email address for option %(property)s: %(error)s'))
else: