diff options
| author | bwarsaw | 2002-11-11 14:52:21 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-11-11 14:52:21 +0000 |
| commit | 7b0df662ca9bdfcf273220cec285f50a7f7983ee (patch) | |
| tree | f1b3a0e46239c61540fd85eaf1764102acc99add /Mailman/Logging/Logger.py | |
| parent | f89035ff7708f2ae9d2fc691f3310c52e429a56b (diff) | |
| download | mailman-7b0df662ca9bdfcf273220cec285f50a7f7983ee.tar.gz mailman-7b0df662ca9bdfcf273220cec285f50a7f7983ee.tar.zst mailman-7b0df662ca9bdfcf273220cec285f50a7f7983ee.zip | |
Diffstat (limited to 'Mailman/Logging/Logger.py')
| -rw-r--r-- | Mailman/Logging/Logger.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Logging/Logger.py b/Mailman/Logging/Logger.py index 64b291208..0cb7c6afb 100644 --- a/Mailman/Logging/Logger.py +++ b/Mailman/Logging/Logger.py @@ -65,7 +65,7 @@ class Logger: f = codecs.open( self.__filename, 'a+', self.__encoding, 'replace', 1) - except codecs.LookupError: + except LookupError: f = open(self.__filename, 'a+', 1) self.__fp = f finally: |
