summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2006-03-15 04:33:54 (GMT)
committerGuido van Rossum <guido@python.org>2006-03-15 04:33:54 (GMT)
commit87de069e4e6387e77bafae8aba2f73a70dccc1a2 (patch)
tree204ccfecd2084d38f807d89de881c9db6958ca5a /Lib/distutils
parent903d846a69b6a837495c00b26bd4bbcb3835e26f (diff)
downloadcpython-87de069e4e6387e77bafae8aba2f73a70dccc1a2.zip
cpython-87de069e4e6387e77bafae8aba2f73a70dccc1a2.tar.gz
cpython-87de069e4e6387e77bafae8aba2f73a70dccc1a2.tar.bz2
Use relative imports in a few places where I noticed the need.
(Ideally, all packages in Python 2.5 will use the relative import syntax for all their relative import needs.)
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/sysconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py
index 9bdbb16..dc603be 100644
--- a/Lib/distutils/sysconfig.py
+++ b/Lib/distutils/sysconfig.py
@@ -16,7 +16,7 @@ import re
import string
import sys
-from errors import DistutilsPlatformError
+from .errors import DistutilsPlatformError
# These are needed in a couple of spots, so just compute them once.
PREFIX = os.path.normpath(sys.prefix)