From: Georg Brandl Date: Sun, 2 Jan 2011 22:55:12 +0000 (+0000) Subject: #10810: fix missing import. X-Git-Tag: v3.2.1b1~347^2~113 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ed3baf35c3159381afccf81af4f1e58abb634adb;p=thirdparty%2FPython%2Fcpython.git #10810: fix missing import. --- diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py index 9013f8d0b1f4..0d99f469f716 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