Debugger: Fix little exception detection bug
authorMark Florisson <markflorisson88@gmail.com>
Sat, 26 Mar 2011 11:31:18 +0000 (12:31 +0100)
committerMark Florisson <markflorisson88@gmail.com>
Sat, 26 Mar 2011 11:31:18 +0000 (12:31 +0100)
Cython/Debugger/libpython.py

index 43b4353b7a1aa535fcc738f15efa701510d7fcc8..43e15e1061f383614b30bfbeff0bd36b8e2dc07f 100644 (file)
@@ -2195,7 +2195,7 @@ class PythonInfo(LanguageInfo):
                 inf_value = tstate['curexc_value']
 
                 if inf_type:
-                    return 'An exception was raised: %s(%s)' % (inf_value,)
+                    return 'An exception was raised: %s' % (inf_value,)
         except (ValueError, RuntimeError), e:
             # Could not read the variable tstate or it's memory, it's ok
             pass