[Python-checkins] r74483 - python/branches/tk_and_idle_maintenance/Lib/idlelib/configDialog.py

guilherme.polo python-checkins at python.org
Mon Aug 17 05:53:43 CEST 2009


Author: guilherme.polo
Date: Mon Aug 17 05:53:42 2009
New Revision: 74483

Log:
Renaming label for symmetry.

Modified:
   python/branches/tk_and_idle_maintenance/Lib/idlelib/configDialog.py

Modified: python/branches/tk_and_idle_maintenance/Lib/idlelib/configDialog.py
==============================================================================
--- python/branches/tk_and_idle_maintenance/Lib/idlelib/configDialog.py	(original)
+++ python/branches/tk_and_idle_maintenance/Lib/idlelib/configDialog.py	Mon Aug 17 05:53:42 2009
@@ -359,7 +359,7 @@
         radioSaveBefore=Radiobutton(frameRun,variable=self.saveBeforeRun,
             value=1,text="Prompt to Save")
         radioSaveToTemp=Radiobutton(frameRun,variable=self.saveBeforeRun,
-            value=0,text="Just run")
+            value=0,text="No prompt")
         labelAutoSave=Label(frameRun, text='If file has been saved before ')
         radioSaveAsk=Radiobutton(frameRun,variable=self.autoSave,
             value=0,text="Prompt to Save")


More information about the Python-checkins mailing list