From 085eb1b3723b14cdcb69d60099033be22910dbec Mon Sep 17 00:00:00 2001 From: "Steven M. Gava" Date: Tue, 5 Feb 2002 04:52:32 +0000 Subject: further work on config system and config saving --- Lib/idlelib/configSectionNameDialog.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Lib/idlelib/configSectionNameDialog.py') diff --git a/Lib/idlelib/configSectionNameDialog.py b/Lib/idlelib/configSectionNameDialog.py index a6612cc922..842715b553 100644 --- a/Lib/idlelib/configSectionNameDialog.py +++ b/Lib/idlelib/configSectionNameDialog.py @@ -65,10 +65,10 @@ class GetCfgSectionNameDialog(Toplevel): tkMessageBox.showerror(title='Name Error', message='No name specified.') nameOk=0 - elif len(name)>60: #name too long + elif len(name)>30: #name too long tkMessageBox.showerror(title='Name Error', - message='Name too long. Keep it to less than '+ - '60 characters.') + message='Name too long. It should be no more than '+ + '30 characters.') nameOk=0 elif name in self.usedNames: tkMessageBox.showerror(title='Name Error', @@ -78,7 +78,7 @@ class GetCfgSectionNameDialog(Toplevel): def Ok(self, event=None): if self.NameOk(): - self.result=self.name.get() + self.result=self.name.get().strip() self.destroy() def Cancel(self, event=None): -- cgit v1.2.1