aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/MailList.py
diff options
context:
space:
mode:
authorbwarsaw <>2004-02-19 04:29:40 +0000
committerbwarsaw <>2004-02-19 04:29:40 +0000
commitf8d295820616eddbc757479e409d7625ba316a3f (patch)
tree90478fbd891df2b6cd642e0f68e278a7e301e1ce /Mailman/MailList.py
parent232db7081c9620da11616f4ee31251c47f596183 (diff)
downloadmailman2-f8d295820616eddbc757479e409d7625ba316a3f.tar.gz
mailman2-f8d295820616eddbc757479e409d7625ba316a3f.tar.xz
mailman2-f8d295820616eddbc757479e409d7625ba316a3f.zip
InitTempVars(): Initialize _full_path to the empty string, not None.
Diffstat (limited to 'Mailman/MailList.py')
-rw-r--r--Mailman/MailList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/MailList.py b/Mailman/MailList.py
index 3b8ee994..4c7f79e0 100644
--- a/Mailman/MailList.py
+++ b/Mailman/MailList.py
@@ -251,7 +251,7 @@ class MailList(HTMLFormatter, Deliverer, ListAdmin,
if name:
self._full_path = Site.get_listpath(name)
else:
- self._full_path = None
+ self._full_path = ''
# Only one level of mixin inheritance allowed
for baseclass in self.__class__.__bases__:
if hasattr(baseclass, 'InitTempVars'):