diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2015-12-09 03:54:32 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-12-09 03:54:32 -0500 |
| commit | 2a379eac97f2defcb828589ad5b46ace8a54d0f5 (patch) | |
| tree | 0f506ba0e98dd4f1d58282f7c7b5786125f44f7b /setuptools/command/egg_info.py | |
| parent | 6840f40ad0cc4df8c98cd8b78f4c86d6200c1b57 (diff) | |
| download | python-setuptools-git-2a379eac97f2defcb828589ad5b46ace8a54d0f5.tar.gz | |
Reorganize imports
Diffstat (limited to 'setuptools/command/egg_info.py')
| -rwxr-xr-x | setuptools/command/egg_info.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 28aa7994..8b393a71 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -13,11 +13,6 @@ import sys import io import warnings -try: - from setuptools_svn import svn_utils -except ImportError: - pass - from setuptools import Command from setuptools.command.sdist import sdist from setuptools.compat import basestring, PY3, StringIO @@ -29,6 +24,12 @@ import setuptools.unicode_utils as unicode_utils from pkg_resources import packaging +try: + from setuptools_svn import svn_utils +except ImportError: + pass + + class egg_info(Command): description = "create a distribution's .egg-info directory" |
