commit | c7498f5aabc72fbd30c29845e2d501eb30127069 | [log] [tgz] |
---|---|---|
author | Tarek Ziadé <ziade.tarek@gmail.com> | Thu Jun 11 09:13:36 2009 +0000 |
committer | Tarek Ziadé <ziade.tarek@gmail.com> | Thu Jun 11 09:13:36 2009 +0000 |
tree | e51098ca0440bab7dc1d4e0cfb609bab304f634e | |
parent | 2d36afd15e9212139a49fa0e66052fbecca499a1 [diff] [blame] |
#6263 fixed syntax error in distutils.cygwinccompiler
diff --git a/Lib/distutils/cygwinccompiler.py b/Lib/distutils/cygwinccompiler.py index df5ebaf..fd5296c 100644 --- a/Lib/distutils/cygwinccompiler.py +++ b/Lib/distutils/cygwinccompiler.py
@@ -81,7 +81,7 @@ # 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):