about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--test/jitter/jitcore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/jitter/jitcore.py b/test/jitter/jitcore.py
index c45fa13c..f75a8b98 100644
--- a/test/jitter/jitcore.py
+++ b/test/jitter/jitcore.py
@@ -41,7 +41,7 @@ assert jitter.cpu.EAX == 1
 
 try:
         jitter.cpu.EAX = -0x1ffffffff
-except TypeError as te:
+except TypeError:
         pass
 else:
         raise Exception("Should see that -0x1ffffffff is too big for EAX")