summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/cygwinccompiler.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-06-11 09:13:36 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-06-11 09:13:36 (GMT)
commitc7498f5aabc72fbd30c29845e2d501eb30127069 (patch)
treee51098ca0440bab7dc1d4e0cfb609bab304f634e /Lib/distutils/cygwinccompiler.py
parent2d36afd15e9212139a49fa0e66052fbecca499a1 (diff)
downloadcpython-c7498f5aabc72fbd30c29845e2d501eb30127069.zip
cpython-c7498f5aabc72fbd30c29845e2d501eb30127069.tar.gz
cpython-c7498f5aabc72fbd30c29845e2d501eb30127069.tar.bz2
#6263 fixed syntax error in distutils.cygwinccompiler
Diffstat (limited to 'Lib/distutils/cygwinccompiler.py')
-rw-r--r--Lib/distutils/cygwinccompiler.py2
1 files changed, 1 insertions, 1 deletions
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 @@ 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):