aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/lib2to3_ex.py
diff options
context:
space:
mode:
authorstepshal <nessento@openmailbox.org>2016-07-21 04:13:28 +0700
committerstepshal <nessento@openmailbox.org>2016-07-21 04:44:00 +0700
commit64335b63f9e03e71d0acd885b8bfd0b4b7a60aa8 (patch)
tree91595eed064559aeb56b1f2d52ed001c467427ea /setuptools/lib2to3_ex.py
parente6d6f7bd99d7329a5689980ac74c9e227bd0f503 (diff)
downloadexternal_python_setuptools-64335b63f9e03e71d0acd885b8bfd0b4b7a60aa8.tar.gz
external_python_setuptools-64335b63f9e03e71d0acd885b8bfd0b4b7a60aa8.tar.bz2
external_python_setuptools-64335b63f9e03e71d0acd885b8bfd0b4b7a60aa8.zip
Put colon-separated compound statement on separate lines.
Diffstat (limited to 'setuptools/lib2to3_ex.py')
-rw-r--r--setuptools/lib2to3_ex.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/lib2to3_ex.py b/setuptools/lib2to3_ex.py
index c58d8407..467e57d2 100644
--- a/setuptools/lib2to3_ex.py
+++ b/setuptools/lib2to3_ex.py
@@ -45,7 +45,8 @@ class Mixin2to3(_Mixin2to3):
_Mixin2to3.run_2to3(self, files)
def __build_fixer_names(self):
- if self.fixer_names: return
+ if self.fixer_names:
+ return
self.fixer_names = []
for p in setuptools.lib2to3_fixer_packages:
self.fixer_names.extend(get_fixers_from_package(p))