summaryrefslogtreecommitdiff
path: root/setuptools/msvc9_support.py
diff options
context:
space:
mode:
authorJ. Goutin <JGoutin@users.noreply.github.com>2016-04-29 18:25:50 +0200
committerJ. Goutin <JGoutin@users.noreply.github.com>2016-04-29 18:25:50 +0200
commitd4486dc692f07db138a129d08803ceb8f55ae4b8 (patch)
tree7e2ec981075680ba4c8f50dc06e76544793cf5fb /setuptools/msvc9_support.py
parent11cd038b9bf7231b2007c8accb406062965fa8a0 (diff)
downloadpython-setuptools-git-d4486dc692f07db138a129d08803ceb8f55ae4b8.tar.gz
useless 'r' before str
Diffstat (limited to 'setuptools/msvc9_support.py')
-rw-r--r--setuptools/msvc9_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/msvc9_support.py b/setuptools/msvc9_support.py
index 94de6fd1..dba7c392 100644
--- a/setuptools/msvc9_support.py
+++ b/setuptools/msvc9_support.py
@@ -810,7 +810,7 @@ class EnvironmentInfo:
"""
forcex86 = True if self.vcver <= 10.0 else False
arch_subdir = self.pi.cross_dir(forcex86)
- tools = [os.path.join(self.si.VCInstallDir, r'VCPackages'),
+ tools = [os.path.join(self.si.VCInstallDir, 'VCPackages'),
os.path.join(self.si.VCInstallDir, 'Bin%s' % arch_subdir)]
if self.pi.cross_dir() and self.vcver >= 14.0: