mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
#6263 fixed syntax error in distutils.cygwinccompiler
This commit is contained in:
parent
2d36afd15e
commit
c7498f5aab
3 changed files with 37 additions and 2 deletions
|
@ -81,7 +81,7 @@ def get_msvcr():
|
|||
# VS2008 / MSVC 9.0
|
||||
return ['msvcr90']
|
||||
else:
|
||||
raise ValueError("Unknown MS Compiler version %i " % msc_Ver)
|
||||
raise ValueError("Unknown MS Compiler version %s " % msc_ver)
|
||||
|
||||
|
||||
class CygwinCCompiler (UnixCCompiler):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue