summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-06-22 10:15:21 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-06-22 10:15:21 -0400
commit762d9528d43af13cd396f2326c6c4aa077579cb3 (patch)
tree4489d8c0139c7dc3fde61b1ad4203c1529803517
parentf31f3b0184bf5869a529b5b7e143dc41c89d6ffe (diff)
downloadpython-setuptools-bitbucket-762d9528d43af13cd396f2326c6c4aa077579cb3.tar.gz
Reindent long line
-rwxr-xr-xsetuptools/command/install_egg_info.py3
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)",
)