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/sandbox.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/sandbox.py')
-rwxr-xr-x | setuptools/sandbox.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/sandbox.py b/setuptools/sandbox.py index c6bab096..5ed45f84 100755 --- a/setuptools/sandbox.py +++ b/setuptools/sandbox.py @@ -234,7 +234,7 @@ def run_setup(setup_script, args): setup_dir = os.path.abspath(os.path.dirname(setup_script)) with setup_context(setup_dir): try: - sys.argv[:] = [setup_script]+list(args) + sys.argv[:] = [setup_script] + list(args) sys.path.insert(0, setup_dir) # reset to include setup dir, w/clean callback list working_set.__init__() @@ -353,8 +353,8 @@ class AbstractSandbox: def _remap_pair(self, operation, src, dst, *args, **kw): """Called for path pairs like rename, link, and symlink operations""" return ( - self._remap_input(operation+'-from', src, *args, **kw), - self._remap_input(operation+'-to', dst, *args, **kw) + self._remap_input(operation + '-from', src, *args, **kw), + self._remap_input(operation + '-to', dst, *args, **kw) ) |