summaryrefslogtreecommitdiff
path: root/mailman/database/__init__.py
diff options
context:
space:
mode:
authorBarry Warsaw2008-12-23 17:33:37 -0500
committerBarry Warsaw2008-12-23 17:33:37 -0500
commitd4de7996e6d4fb5db04dfed3b3fd12747622b164 (patch)
treeda5485447a128a0dd857a2a492168deec838362b /mailman/database/__init__.py
parentfd600d3952393dc9808fefb9be871f78cdbdff39 (diff)
downloadmailman-d4de7996e6d4fb5db04dfed3b3fd12747622b164.tar.gz
mailman-d4de7996e6d4fb5db04dfed3b3fd12747622b164.tar.zst
mailman-d4de7996e6d4fb5db04dfed3b3fd12747622b164.zip
Use my lazr.config megamerge branch for now, even though it's still under
development. Completely rework the way switchboards and queue runners are initialized, i.e. driven from the configuration file instead of hard coded. The various queue runner directories are no longer available thorugh the config object directly. Get them from config.switchboards. Provide minimal mailman.cfg and testing.cfg configuration files. Neuter styles for now until they can be consolidated with lazr.config.
Diffstat (limited to 'mailman/database/__init__.py')
-rw-r--r--mailman/database/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mailman/database/__init__.py b/mailman/database/__init__.py
index 429fea953..65022ffe4 100644
--- a/mailman/database/__init__.py
+++ b/mailman/database/__init__.py
@@ -23,6 +23,7 @@ __all__ = [
import os
from locknix.lockfile import Lock
+from lazr.config import as_boolean
from pkg_resources import resource_string
from storm.locals import create_database, Store
from string import Template
@@ -32,7 +33,6 @@ from zope.interface import implements
import mailman.version
from mailman.config import config
-from mailman.config.helpers import as_boolean
from mailman.database.listmanager import ListManager
from mailman.database.messagestore import MessageStore
from mailman.database.pending import Pendings