diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-13 12:23:18 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-13 12:23:18 (GMT) |
commit | 6cbc5f784fd07f1c1df3e749d429b3bef9d9cfd6 (patch) | |
tree | 8f52f9426576eba563fd2451250ff57f3f5b8e65 /Lib/tkinter | |
parent | 939e2db48dc3bcb159486b599901b694d2d57f89 (diff) | |
download | cpython-6cbc5f784fd07f1c1df3e749d429b3bef9d9cfd6.zip cpython-6cbc5f784fd07f1c1df3e749d429b3bef9d9cfd6.tar.gz cpython-6cbc5f784fd07f1c1df3e749d429b3bef9d9cfd6.tar.bz2 |
Fixed typo.
Diffstat (limited to 'Lib/tkinter')
-rw-r--r-- | Lib/tkinter/test/test_ttk/test_widgets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tkinter/test/test_ttk/test_widgets.py b/Lib/tkinter/test/test_ttk/test_widgets.py index efc3e72..3ac14be 100644 --- a/Lib/tkinter/test/test_ttk/test_widgets.py +++ b/Lib/tkinter/test/test_ttk/test_widgets.py @@ -576,7 +576,7 @@ class PanedWindowTest(AbstractWidgetTest, unittest.TestCase): widget = self.create() self.assertEqual(str(widget['orient']), 'vertical') errmsg='attempt to change read-only option' - if get_tk_patchlevel() < (8, 6, 0): # actually this was changen in 8.6b3 + if get_tk_patchlevel() < (8, 6, 0): # actually this was changed in 8.6b3 errmsg='Attempt to change read-only option' self.checkInvalidParam(widget, 'orient', 'horizontal', errmsg=errmsg) |