]> granicus.if.org Git - python/commitdiff
Fix Queue -> queue.
authorGeorg Brandl <georg@python.org>
Sun, 25 May 2008 07:17:27 +0000 (07:17 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 25 May 2008 07:17:27 +0000 (07:17 +0000)
Lib/idlelib/run.py

index 355f85359a45247ff89097a400b1bbc85bf78b1f..c9f501021194594424c8de1f4ad1defd904e49d7 100644 (file)
@@ -151,7 +151,7 @@ def print_exception():
     sys.last_type, sys.last_value, sys.last_traceback = excinfo
     tbe = traceback.extract_tb(tb)
     print('Traceback (most recent call last):', file=efile)
-    exclude = ("run.py", "rpc.py", "threading.py", "Queue.py",
+    exclude = ("run.py", "rpc.py", "threading.py", "queue.py",
                "RemoteDebugger.py", "bdb.py")
     cleanup_traceback(tbe, exclude)
     traceback.print_list(tbe, file=efile)