diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-04-07 22:33:28 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-04-07 22:33:28 -0400 |
commit | cd13a8c0c4ee765a8bd083863338dec4ba618d08 (patch) | |
tree | 4ee39dea5a5095cc9b4ff1f006d44edea46961c4 /setuptools/msvc.py | |
parent | f357a32fdc9ce8e6a862efcbb9a0229f6f0a685c (diff) | |
download | external_python_setuptools-cd13a8c0c4ee765a8bd083863338dec4ba618d08.tar.gz external_python_setuptools-cd13a8c0c4ee765a8bd083863338dec4ba618d08.tar.bz2 external_python_setuptools-cd13a8c0c4ee765a8bd083863338dec4ba618d08.zip |
Remove unnecessary raw string. Ref #995.
Diffstat (limited to 'setuptools/msvc.py')
-rw-r--r-- | setuptools/msvc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/msvc.py b/setuptools/msvc.py index 9a911834..35c02129 100644 --- a/setuptools/msvc.py +++ b/setuptools/msvc.py @@ -1011,7 +1011,7 @@ class EnvironmentInfo: path = os.path.join(self.si.WindowsSdkDir, 'Bin') arch_subdir = self.pi.current_dir(x64=True) sdkver = self._get_content_dirname(path).rstrip('\\') - yield os.path.join(path, r'%s%s' % (sdkver, arch_subdir)) + yield os.path.join(path, '%s%s' % (sdkver, arch_subdir)) if self.si.WindowsSDKExecutablePath: yield self.si.WindowsSDKExecutablePath |