diff options
| author | Jeremy Kloth <jeremy.kloth@gmail.com> | 2011-09-12 05:10:57 -0600 |
|---|---|---|
| committer | Jeremy Kloth <jeremy.kloth@gmail.com> | 2011-09-12 05:10:57 -0600 |
| commit | 6cc3762352d9deb802ad5acf2f4c4b7bd7da904b (patch) | |
| tree | ffb0d29562ef3f8c89fd07e96514340b3371f85a /distutils2/tests/test_command_install_data.py | |
| parent | 5ff96812fecd2ddf8ced17708d725f4982df4353 (diff) | |
| download | disutils2-6cc3762352d9deb802ad5acf2f4c4b7bd7da904b.tar.gz | |
Fixes to actually use the backports.
Diffstat (limited to 'distutils2/tests/test_command_install_data.py')
| -rw-r--r-- | distutils2/tests/test_command_install_data.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distutils2/tests/test_command_install_data.py b/distutils2/tests/test_command_install_data.py index 719027f..ca79c63 100644 --- a/distutils2/tests/test_command_install_data.py +++ b/distutils2/tests/test_command_install_data.py @@ -1,7 +1,7 @@ """Tests for distutils2.command.install_data.""" import os -import sysconfig -from sysconfig import _get_default_scheme +from distutils2._backport import sysconfig +from distutils2._backport.sysconfig import _get_default_scheme from distutils2.tests import unittest, support from distutils2.command.install_data import install_data |
