From f8d295820616eddbc757479e409d7625ba316a3f Mon Sep 17 00:00:00 2001 From: bwarsaw <> Date: Thu, 19 Feb 2004 04:29:40 +0000 Subject: InitTempVars(): Initialize _full_path to the empty string, not None. --- Mailman/MailList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Mailman') 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'): -- cgit v1.2.3