diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-06-22 10:15:21 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-06-22 10:15:21 -0400 |
commit | 63b852dff23dc86e983fceddde1463724a9d8a07 (patch) | |
tree | 360e453a423a9feb5cd194216a2c65a86c8d9156 | |
parent | 9f48d842e5c7c916f472420c7bc9f62b333a40ff (diff) | |
download | external_python_setuptools-63b852dff23dc86e983fceddde1463724a9d8a07.tar.gz external_python_setuptools-63b852dff23dc86e983fceddde1463724a9d8a07.tar.bz2 external_python_setuptools-63b852dff23dc86e983fceddde1463724a9d8a07.zip |
Reindent long line
-rwxr-xr-x | setuptools/command/install_egg_info.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/install_egg_info.py b/setuptools/command/install_egg_info.py index 87cfc490..67e183e1 100755 --- a/setuptools/command/install_egg_info.py +++ b/setuptools/command/install_egg_info.py @@ -64,7 +64,8 @@ class install_egg_info(Command): "import sys, types, os", "p = os.path.join(sys._getframe(1).f_locals['sitedir'], *%(pth)r)", "ie = os.path.exists(os.path.join(p,'__init__.py'))", - "m = not ie and sys.modules.setdefault(%(pkg)r, types.ModuleType(%(pkg)r))", + "m = not ie and " + "sys.modules.setdefault(%(pkg)r, types.ModuleType(%(pkg)r))", "mp = (m or []) and m.__dict__.setdefault('__path__',[])", "(p not in mp) and mp.append(p)", ) |