summaryrefslogtreecommitdiff
path: root/Mailman/Logging/Logger.py
diff options
context:
space:
mode:
authorbwarsaw1998-07-23 14:32:52 +0000
committerbwarsaw1998-07-23 14:32:52 +0000
commitedfdf8ecd2ceb615851a12e55c9da88e1e8c6e5e (patch)
treef288738676b6689e63cb4a1578a5738cd27ff5f1 /Mailman/Logging/Logger.py
parentb99b194f4bc52a1aa09af8e5dc6321a019a96475 (diff)
downloadmailman-edfdf8ecd2ceb615851a12e55c9da88e1e8c6e5e.tar.gz
mailman-edfdf8ecd2ceb615851a12e55c9da88e1e8c6e5e.tar.zst
mailman-edfdf8ecd2ceb615851a12e55c9da88e1e8c6e5e.zip
Fixed package name in import of __logexc. If the module is not in the
current directory, the full path of the package must be given. Strictly speaking, the package path isn't necessary since it is guaranteed to find the right Utils.
Diffstat (limited to 'Mailman/Logging/Logger.py')
-rw-r--r--Mailman/Logging/Logger.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Logging/Logger.py b/Mailman/Logging/Logger.py
index f1707c786..8a111940a 100644
--- a/Mailman/Logging/Logger.py
+++ b/Mailman/Logging/Logger.py
@@ -19,7 +19,7 @@
import sys
import os
import Mailman.mm_cfg
-from Logging.Utils import __logexc
+from Mailman.Logging.Utils import __logexc
class Logger: