diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-20 19:21:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-20 19:21:17 -0400 |
commit | cadf172febb5cec35a4faf1d65d5c6d4e6ac76d8 (patch) | |
tree | cb590366fa5786a7062ee8aed75a446b0a171177 /setuptools/lib2to3_ex.py | |
parent | e6168c607fb4247cbfe410f45a4671bed056a0da (diff) | |
parent | 64335b63f9e03e71d0acd885b8bfd0b4b7a60aa8 (diff) | |
download | external_python_setuptools-cadf172febb5cec35a4faf1d65d5c6d4e6ac76d8.tar.gz external_python_setuptools-cadf172febb5cec35a4faf1d65d5c6d4e6ac76d8.tar.bz2 external_python_setuptools-cadf172febb5cec35a4faf1d65d5c6d4e6ac76d8.zip |
Merge pull request #641 from stepshal/colon
Put colon-separated compound statement on separate lines.
Diffstat (limited to 'setuptools/lib2to3_ex.py')
-rw-r--r-- | setuptools/lib2to3_ex.py | 3 |
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)) |