summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>2020-10-24 23:51:03 (GMT)
committerGitHub <noreply@github.com>2020-10-24 23:51:03 (GMT)
commitc1b620eecc2ca0f9ae9d5ee2d973e823db295ad2 (patch)
tree24b7ef0e929519229c5a25f5058562eb73b3e391 /Lib/idlelib
parent82bfe36432bdfe3a183d1721445ef30c0a7f3a34 (diff)
downloadcpython-c1b620eecc2ca0f9ae9d5ee2d973e823db295ad2.zip
cpython-c1b620eecc2ca0f9ae9d5ee2d973e823db295ad2.tar.gz
cpython-c1b620eecc2ca0f9ae9d5ee2d973e823db295ad2.tar.bz2
bpo-33987: Use ttk Label on IDLE statusbar (GH-22941)
(cherry picked from commit e53e54425d9b7b9b7b082817da104d60bb25e3a2) Co-authored-by: Mark Roseman <mark@markroseman.com>
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/statusbar.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/idlelib/statusbar.py b/Lib/idlelib/statusbar.py
index ae52a56..755fafb 100644
--- a/Lib/idlelib/statusbar.py
+++ b/Lib/idlelib/statusbar.py
@@ -1,5 +1,4 @@
-from tkinter import Label
-from tkinter.ttk import Frame
+from tkinter.ttk import Label, Frame
class MultiStatusBar(Frame):