commit | 745b4609cb932a493033b1b7d7e851716ac8e413 | [log] [tgz] |
---|---|---|
author | Thomas Heller <theller@ctypes.org> | Fri Feb 08 14:41:31 2002 +0000 |
committer | Thomas Heller <theller@ctypes.org> | Fri Feb 08 14:41:31 2002 +0000 |
tree | 9b4c82a85ad02ecddf0d8cf3d7016f2187320cc7 | |
parent | bd3be8f0ca4fd70d53d9330489ba565f83530b3b [diff] [blame] |
Make it 1.5.2 compatible again.
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index 3533664..79a4901 100644 --- a/Lib/distutils/msvccompiler.py +++ b/Lib/distutils/msvccompiler.py
@@ -117,10 +117,11 @@ if string.upper(p) == path: V = string.split(v,';') for v in V: - try: - v = v.encode("mbcs") - except UnicodeError: - pass + if hasattr(v, "encode"): + try: + v = v.encode("mbcs") + except UnicodeError: + pass if v == '' or v in L: continue L.append(v) break