summaryrefslogtreecommitdiff
path: root/src/mailman/bin
diff options
context:
space:
mode:
authorBarry Warsaw2011-06-14 16:10:06 -0400
committerBarry Warsaw2011-06-14 16:10:06 -0400
commit8e2bbf7b731d47fe3cab576f8dfd8d474bb4154f (patch)
tree1e929f4659d755c352b5257c1d5b92882b9f28aa /src/mailman/bin
parentefc5c39ede536acafbf28047a83b5b8c31abefe1 (diff)
downloadmailman-8e2bbf7b731d47fe3cab576f8dfd8d474bb4154f.tar.gz
mailman-8e2bbf7b731d47fe3cab576f8dfd8d474bb4154f.tar.zst
mailman-8e2bbf7b731d47fe3cab576f8dfd8d474bb4154f.zip
After a current analysis by Richard Wackerbarth, it was found that not
including site-packages in the built-out environment is what was causing FreeBSD to fail to find the _sqlite module. As it turns out, the reason for adding this no longer appears relevant on Ubuntu, so just remove the setting. Fix a reference error in bin/runner.py Rename: * START.txt -> START.rst * README.txt -> README.rst
Diffstat (limited to 'src/mailman/bin')
-rw-r--r--src/mailman/bin/runner.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mailman/bin/runner.py b/src/mailman/bin/runner.py
index b27ff04ea..b19904aa7 100644
--- a/src/mailman/bin/runner.py
+++ b/src/mailman/bin/runner.py
@@ -220,6 +220,8 @@ def main():
options = ScriptOptions()
options.initialize()
+ log = logging.getLogger('mailman.runner')
+
if options.options.list:
descriptions = {}
for section in config.runner_configs:
@@ -248,7 +250,6 @@ def main():
if runner.intercept_signals:
set_signals(loop)
# Now start up the main loop
- log = logging.getLogger('mailman.runner')
log.info('%s runner started.', loop.name())
runner.run()
log.info('%s runner exiting.', loop.name())