diff options
Diffstat (limited to 'setuptools/lib2to3_ex.py')
| -rw-r--r-- | setuptools/lib2to3_ex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/lib2to3_ex.py b/setuptools/lib2to3_ex.py index f7296786..c58d8407 100644 --- a/setuptools/lib2to3_ex.py +++ b/setuptools/lib2to3_ex.py @@ -27,14 +27,14 @@ class DistutilsRefactoringTool(RefactoringTool): class Mixin2to3(_Mixin2to3): - def run_2to3(self, files, doctests = False): + def run_2to3(self, files, doctests=False): # See of the distribution option has been set, otherwise check the # setuptools default. if self.distribution.use_2to3 is not True: return if not files: return - log.info("Fixing "+" ".join(files)) + log.info("Fixing " + " ".join(files)) self.__build_fixer_names() self.__exclude_fixers() if doctests: |
