diff options
author | stepshal <nessento@openmailbox.org> | 2016-07-14 12:11:49 +0700 |
---|---|---|
committer | stepshal <nessento@openmailbox.org> | 2016-07-14 12:11:49 +0700 |
commit | dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c (patch) | |
tree | 2f1a5c1365313dbe185c598194d2f9cafda7e6ee /setuptools/lib2to3_ex.py | |
parent | 10866a525737842b090d83ccaf6d7aceb092f069 (diff) | |
download | external_python_setuptools-dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c.tar.gz external_python_setuptools-dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c.tar.bz2 external_python_setuptools-dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c.zip |
Fix missing whitespace around operator.
Diffstat (limited to 'setuptools/lib2to3_ex.py')
-rw-r--r-- | setuptools/lib2to3_ex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/lib2to3_ex.py b/setuptools/lib2to3_ex.py index f7296786..ac5f8096 100644 --- a/setuptools/lib2to3_ex.py +++ b/setuptools/lib2to3_ex.py @@ -34,7 +34,7 @@ class Mixin2to3(_Mixin2to3): return if not files: return - log.info("Fixing "+" ".join(files)) + log.info("Fixing " + " ".join(files)) self.__build_fixer_names() self.__exclude_fixers() if doctests: |