Make it slightly clearer that IDLE close message is referring to user program,

not to IDLE itself.
This commit is contained in:
Terry Jan Reedy 2015-11-20 12:21:48 -05:00
parent 51d3f8b0ba
commit 4379d15d4c

View file

@ -989,7 +989,7 @@ class PyShell(OutputWindow):
if self.executing:
response = tkMessageBox.askokcancel(
"Kill?",
"The program is still running!\n Do you want to kill it?",
"Your program is still running!\n Do you want to kill it?",
default="ok",
parent=self.text)
if response is False: