diff options
author | MSeifert04 <michaelseifert04@yahoo.de> | 2019-07-01 20:51:40 +0200 |
---|---|---|
committer | MSeifert04 <michaelseifert04@yahoo.de> | 2019-07-02 07:48:42 +0200 |
commit | 78d269d847dcea87302580bf56a5c41b7b69f122 (patch) | |
tree | e92f1300719474a47c3ccd405370fd769fa51c3a /numpy/distutils/exec_command.py | |
parent | a14a8cefdeb80552f0feecd65c8c5b6b869aa487 (diff) | |
download | numpy-78d269d847dcea87302580bf56a5c41b7b69f122.tar.gz |
MAINT: Remove unnecessary backslashes when not needed.
See also: #13880
Diffstat (limited to 'numpy/distutils/exec_command.py')
-rw-r--r-- | numpy/distutils/exec_command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/exec_command.py b/numpy/distutils/exec_command.py index 2e7b9e463..712f22666 100644 --- a/numpy/distutils/exec_command.py +++ b/numpy/distutils/exec_command.py @@ -217,7 +217,7 @@ def exec_command(command, execute_in='', use_shell=None, use_tee=None, # 2019-01-30, 1.17 warnings.warn('exec_command is deprecated since NumPy v1.17, use ' 'subprocess.Popen instead', DeprecationWarning, stacklevel=1) - log.debug('exec_command(%r,%s)' % (command,\ + log.debug('exec_command(%r,%s)' % (command, ','.join(['%s=%r'%kv for kv in env.items()]))) if use_tee is None: |