summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-25 07:17:27 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-25 07:17:27 (GMT)
commit15a51e3c21efec5546ebb3249b48fa8aa591ea76 (patch)
treeeb68079b6b309be8d917d9cf65de8105adcae9aa /Lib
parentd877ca877b1f07c13524bbaf93831db36d9517d8 (diff)
downloadcpython-15a51e3c21efec5546ebb3249b48fa8aa591ea76.zip
cpython-15a51e3c21efec5546ebb3249b48fa8aa591ea76.tar.gz
cpython-15a51e3c21efec5546ebb3249b48fa8aa591ea76.tar.bz2
Fix Queue -> queue.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/idlelib/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py
index 355f853..c9f5010 100644
--- a/Lib/idlelib/run.py
+++ b/Lib/idlelib/run.py
@@ -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)