diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2019-10-28 22:01:34 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2019-10-28 22:01:34 -0400 |
| commit | e1f340b53f0088993b16e19999a4d6b0e86a9991 (patch) | |
| tree | a213ec17e8d2733cb1218194260a7dbec0d6cd5b /setuptools | |
| parent | 2175d6bdcf4fe626e713961bb0315c91f206746b (diff) | |
| download | external_python_setuptools-e1f340b53f0088993b16e19999a4d6b0e86a9991.tar.gz external_python_setuptools-e1f340b53f0088993b16e19999a4d6b0e86a9991.tar.bz2 external_python_setuptools-e1f340b53f0088993b16e19999a4d6b0e86a9991.zip | |
Avoid importerror on older Pythons
Diffstat (limited to 'setuptools')
| -rw-r--r-- | setuptools/py34compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/py34compat.py b/setuptools/py34compat.py index bc7eefa9..54157a63 100644 --- a/setuptools/py34compat.py +++ b/setuptools/py34compat.py @@ -1,4 +1,4 @@ -import importlib.util +import importlib try: |
