diff options
| author | klm | 1998-07-23 04:44:55 +0000 |
|---|---|---|
| committer | klm | 1998-07-23 04:44:55 +0000 |
| commit | 61e799d3b9baf7cec3a76b1654f94072d6fbf6bc (patch) | |
| tree | 86aef9eefefc448ab0c79e3e6023b44c69feee58 /Mailman/Logging | |
| parent | baa629f96e7d3486bb89f7eca7a5db0142a72e64 (diff) | |
| download | mailman-61e799d3b9baf7cec3a76b1654f94072d6fbf6bc.tar.gz mailman-61e799d3b9baf7cec3a76b1654f94072d6fbf6bc.tar.zst mailman-61e799d3b9baf7cec3a76b1654f94072d6fbf6bc.zip | |
Simplify the import, exploiting the fact that it's within the package.
Diffstat (limited to 'Mailman/Logging')
| -rw-r--r-- | Mailman/Logging/Logger.py | 2 | ||||
| -rw-r--r-- | Mailman/Logging/StampedLogger.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Logging/Logger.py b/Mailman/Logging/Logger.py index 8a111940a..f1707c786 100644 --- a/Mailman/Logging/Logger.py +++ b/Mailman/Logging/Logger.py @@ -19,7 +19,7 @@ import sys import os import Mailman.mm_cfg -from Mailman.Logging.Utils import __logexc +from Logging.Utils import __logexc class Logger: diff --git a/Mailman/Logging/StampedLogger.py b/Mailman/Logging/StampedLogger.py index a7a9d9b65..6ce8cce06 100644 --- a/Mailman/Logging/StampedLogger.py +++ b/Mailman/Logging/StampedLogger.py @@ -15,7 +15,7 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. import time -from Mailman.Logging.Logger import Logger +from Logger import Logger class StampedLogger(Logger): """Record messages in log files, including date stamp and optional label. |
