commit | ed3baf35c3159381afccf81af4f1e58abb634adb | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Jan 02 22:55:12 2011 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Jan 02 22:55:12 2011 +0000 |
tree | 7057bdb6005d93d00859c5aee2b8b38a8509455c | |
parent | cae7c1d824fa77bb100356a7ed81f16b88e531c0 [diff] [blame] |
#10810: fix missing import.
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 @@ """ 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