summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setuptools/tests/test_msvc9compiler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/tests/test_msvc9compiler.py b/setuptools/tests/test_msvc9compiler.py
index 3a2ef970..74b5220b 100644
--- a/setuptools/tests/test_msvc9compiler.py
+++ b/setuptools/tests/test_msvc9compiler.py
@@ -10,6 +10,7 @@ import shutil
import sys
import tempfile
import unittest
+import distutils.errors
try:
from winreg import HKEY_CURRENT_USER, HKEY_LOCAL_MACHINE
@@ -17,7 +18,6 @@ except ImportError:
from _winreg import HKEY_CURRENT_USER, HKEY_LOCAL_MACHINE
import distutils.msvc9compiler
-from distutils.errors import DistutilsPlatformError
# importing only setuptools should apply the patch
__import__('setuptools')
@@ -84,7 +84,7 @@ class TestMSVC9Compiler(unittest.TestCase):
try:
query_vcvarsall(9.0)
self.fail('Expected DistutilsPlatformError from query_vcvarsall()')
- except DistutilsPlatformError:
+ except distutils.errors.DistutilsPlatformError:
exc_message = str(sys.exc_info()[1])
self.assertIn('aka.ms/vcpython27', exc_message)
finally: