diff options
author | Georg Brandl <georg@python.org> | 2011-01-02 22:55:12 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-01-02 22:55:12 (GMT) |
commit | ed3baf35c3159381afccf81af4f1e58abb634adb (patch) | |
tree | 7057bdb6005d93d00859c5aee2b8b38a8509455c /Lib/logging | |
parent | cae7c1d824fa77bb100356a7ed81f16b88e531c0 (diff) | |
download | cpython-ed3baf35c3159381afccf81af4f1e58abb634adb.zip cpython-ed3baf35c3159381afccf81af4f1e58abb634adb.tar.gz cpython-ed3baf35c3159381afccf81af4f1e58abb634adb.tar.bz2 |
#10810: fix missing import.
Diffstat (limited to 'Lib/logging')
-rw-r--r-- | Lib/logging/handlers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py index 9013f8d..0d99f46 100644 --- a/Lib/logging/handlers.py +++ b/Lib/logging/handlers.py @@ -25,7 +25,7 @@ To use, simply 'import logging.handlers' and log away! """ import logging, socket, os, pickle, struct, time, re -from stat import ST_DEV, ST_INO +from stat import ST_DEV, ST_INO, ST_MTIME try: import codecs |