Commit d4486dc6 authored by J. Goutin's avatar J. Goutin

useless 'r' before str

parent 11cd038b
...@@ -810,7 +810,7 @@ class EnvironmentInfo: ...@@ -810,7 +810,7 @@ class EnvironmentInfo:
""" """
forcex86 = True if self.vcver <= 10.0 else False forcex86 = True if self.vcver <= 10.0 else False
arch_subdir = self.pi.cross_dir(forcex86) 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)] os.path.join(self.si.VCInstallDir, 'Bin%s' % arch_subdir)]
if self.pi.cross_dir() and self.vcver >= 14.0: if self.pi.cross_dir() and self.vcver >= 14.0:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment