From: Terry Jan Reedy Date: Mon, 22 Jul 2013 01:24:45 +0000 (-0400) Subject: Issue #18441: fix buildbot name-error for TclError. X-Git-Tag: v2.7.6rc1~286 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=518e48b2bc0f516876e642b6b03039ec36821b54;p=thirdparty%2FPython%2Fcpython.git Issue #18441: fix buildbot name-error for TclError. --- diff --git a/Lib/test/test_idle.py b/Lib/test/test_idle.py index 540f7d206432..79d18a809ba8 100644 --- a/Lib/test/test_idle.py +++ b/Lib/test/test_idle.py @@ -10,7 +10,7 @@ if use_resources and 'gui' in use_resources: try: root = tk.Tk() root.destroy() - except TclError: + except tk.TclError: while True: use_resources.delete('gui') if 'gui' not in use_resources: