diff options
author | Guilherme Polo <ggpolo@gmail.com> | 2009-03-28 19:17:16 (GMT) |
---|---|---|
committer | Guilherme Polo <ggpolo@gmail.com> | 2009-03-28 19:17:16 (GMT) |
commit | 41eb08616c78602b1c26982e25aa217358bbe536 (patch) | |
tree | 44aa29eec877ab322917bda238b81362773fe63f | |
parent | 0e9285845ee37fb24ccced8fbe8ef90c21d096ce (diff) | |
download | cpython-41eb08616c78602b1c26982e25aa217358bbe536.zip cpython-41eb08616c78602b1c26982e25aa217358bbe536.tar.gz cpython-41eb08616c78602b1c26982e25aa217358bbe536.tar.bz2 |
Typo fix
-rw-r--r-- | Modules/_tkinter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index b4031db..775598c 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -2703,7 +2703,7 @@ Tkapp_Quit(PyObject *self, PyObject *args) if (!self && Py_Py3kWarningFlag) { if (PyErr_Warn(PyExc_DeprecationWarning, - "_tkinter.createfilehandler is gone in 3.x") < 0) + "_tkinter.quit is gone in 3.x") < 0) return NULL; } |