diff options
author | Guido van Rossum <guido@python.org> | 2006-03-15 23:08:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2006-03-15 23:08:13 (GMT) |
commit | f8480a7856f8f2027c3f064219466b096fc104e5 (patch) | |
tree | 2015a1105ce5c04891c109af923c22172a25a2a6 /Lib/distutils | |
parent | 067db4899702039743639612745416f534a143de (diff) | |
download | cpython-f8480a7856f8f2027c3f064219466b096fc104e5.zip cpython-f8480a7856f8f2027c3f064219466b096fc104e5.tar.gz cpython-f8480a7856f8f2027c3f064219466b096fc104e5.tar.bz2 |
Instead of relative imports, use (implicitly) absolute ones.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/sysconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py index dc603be..0feb14a 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 distutils.errors import DistutilsPlatformError # These are needed in a couple of spots, so just compute them once. PREFIX = os.path.normpath(sys.prefix) |