From 106ffdb6723524df444aa78f591b9cf690c78235 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Thu, 9 Aug 2001 20:59:53 +0000 Subject: [PATCH] Import the errno module --- Lib/distutils/file_util.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/distutils/file_util.py b/Lib/distutils/file_util.py index a3767bbd936..991d8357b50 100644 --- a/Lib/distutils/file_util.py +++ b/Lib/distutils/file_util.py @@ -188,7 +188,8 @@ def move_file (src, dst, other systems??? """ from os.path import exists, isfile, isdir, basename, dirname - + import errno + if verbose: print "moving %s -> %s" % (src, dst)