diff options
author | Just van Rossum <just@lettererror.com> | 2000-04-09 19:45:38 (GMT) |
---|---|---|
committer | Just van Rossum <just@lettererror.com> | 2000-04-09 19:45:38 (GMT) |
commit | ae787185dfc2a1eed55a741c15a2a07182d5ac14 (patch) | |
tree | 7e6595ebf5098dd81292224bab2fae77555ec7ef /Mac | |
parent | 73efed21e8b6b30df08dfddd5078ce3689ef8bb1 (diff) | |
download | cpython-ae787185dfc2a1eed55a741c15a2a07182d5ac14.zip cpython-ae787185dfc2a1eed55a741c15a2a07182d5ac14.tar.gz cpython-ae787185dfc2a1eed55a741c15a2a07182d5ac14.tar.bz2 |
minor tweak (jvr)
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Tools/IDE/Wtraceback.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Tools/IDE/Wtraceback.py b/Mac/Tools/IDE/Wtraceback.py index 1d7b7ba..9b54b17 100644 --- a/Mac/Tools/IDE/Wtraceback.py +++ b/Mac/Tools/IDE/Wtraceback.py @@ -21,7 +21,7 @@ class TraceBack: try: self.lastwindowtitle = lastwindowtitle self.start = start - self.type, self.value, self.tb = sys.exc_type, sys.exc_value, sys.exc_traceback + self.type, self.value, self.tb = sys.exc_info() if self.type is not SyntaxError: self.show() if type(self.type) == types.ClassType: |