From 6634bf2919d855ccd821e878b8cc00c7209f1cbe Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 20 May 2008 07:13:37 +0000 Subject: Tkinter rename reversal: remove tkinter package, adapt imports and docs. --- Lib/idlelib/configSectionNameDialog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/idlelib/configSectionNameDialog.py') diff --git a/Lib/idlelib/configSectionNameDialog.py b/Lib/idlelib/configSectionNameDialog.py index bcf132c7ef..4f1b002afc 100644 --- a/Lib/idlelib/configSectionNameDialog.py +++ b/Lib/idlelib/configSectionNameDialog.py @@ -2,8 +2,8 @@ Dialog that allows user to specify a new config file section name. Used to get new highlight theme and keybinding set names. """ -from tkinter import * -import tkinter.messagebox as tkMessageBox +from Tkinter import * +import tkMessageBox class GetCfgSectionNameDialog(Toplevel): def __init__(self,parent,title,message,usedNames): -- cgit v1.2.1