From bd4a63e091ddb38a2d55d9c21eee8656863240ca Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 10 Aug 2007 17:36:34 +0000 Subject: [PATCH] A small tweak to avoid calling traceback.format_exception_only() with a bogus (tuple) value. This should fix the "make install" issue Neal reported. --- Lib/py_compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/py_compile.py b/Lib/py_compile.py index 1d884d008e7..f7a200204ca 100644 --- a/Lib/py_compile.py +++ b/Lib/py_compile.py @@ -141,7 +141,7 @@ def compile(file, cfile=None, dfile=None, doraise=False): try: codeobject = __builtin__.compile(codestring, dfile or file,'exec') except Exception as err: - py_exc = PyCompileError(err.__class__,err.args,dfile or file) + py_exc = PyCompileError(err.__class__, err, dfile or file) if doraise: raise py_exc else: