diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-20 11:19:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-20 11:19:09 -0400 |
commit | 7303c3281c2a8ac3b4d9878a92ab55bbfb92faf3 (patch) | |
tree | 8727e0d9b118bccfd0844a97abeba4061649d82b /setuptools/lib2to3_ex.py | |
parent | add487b9f51571a85bc7597ac3835d29bc5c2504 (diff) | |
parent | 2e1ca9656b566b57c7736ef229e9d46c0aa7216c (diff) | |
download | external_python_setuptools-7303c3281c2a8ac3b4d9878a92ab55bbfb92faf3.tar.gz external_python_setuptools-7303c3281c2a8ac3b4d9878a92ab55bbfb92faf3.tar.bz2 external_python_setuptools-7303c3281c2a8ac3b4d9878a92ab55bbfb92faf3.zip |
Merge pull request #640 from stepshal/parameter
Remove whitespace around parameter '=' sign.
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 ac5f8096..c58d8407 100644 --- a/setuptools/lib2to3_ex.py +++ b/setuptools/lib2to3_ex.py @@ -27,7 +27,7 @@ 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: |