summaryrefslogtreecommitdiff
path: root/Mailman/initialize.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman/initialize.py')
-rw-r--r--Mailman/initialize.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/initialize.py b/Mailman/initialize.py
index b17e3a9e2..0993acf3d 100644
--- a/Mailman/initialize.py
+++ b/Mailman/initialize.py
@@ -57,13 +57,13 @@ def initialize_1(config_path, propagate_logs):
Mailman.loginit.initialize(propagate_logs)
-def initialize_2():
+def initialize_2(debug=False):
database_plugin = get_plugin('mailman.database')
# Instantiate the database plugin, ensure that it's of the right type, and
# initialize it. Then stash the object on our configuration object.
database = database_plugin()
verifyObject(IDatabase, database)
- database.initialize()
+ database.initialize(debug)
Mailman.configuration.config.db = database