summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2002-02-27 00:13:19 +0000
committerbwarsaw2002-02-27 00:13:19 +0000
commitb3361a9349dcc94a669c1ceca7cb4de21cdad263 (patch)
treea1405c4df507a0fa671d40ebccd47141dc036f6b
parent5ca4ff21b075262b0c289569db700bfec5000051 (diff)
downloadmailman-b3361a9349dcc94a669c1ceca7cb4de21cdad263.tar.gz
mailman-b3361a9349dcc94a669c1ceca7cb4de21cdad263.tar.zst
mailman-b3361a9349dcc94a669c1ceca7cb4de21cdad263.zip
Somehow (and I'm not sure how), the GUIBase class gets exposed in the
package scope. Delete it, because it messes up the automatic instantiation policy in MailList.InitTempVars().
-rw-r--r--Mailman/Gui/__init__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Mailman/Gui/__init__.py b/Mailman/Gui/__init__.py
index eb18d8727..e83549363 100644
--- a/Mailman/Gui/__init__.py
+++ b/Mailman/Gui/__init__.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001 by the Free Software Foundation, Inc.
+# Copyright (C) 2001,2002 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
@@ -26,3 +26,6 @@ from Privacy import Privacy
from Topics import Topics
from Usenet import Usenet
from Language import Language
+
+# Don't export this symbol outside the package
+del GUIBase