summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-11-17 20:27:20 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-11-17 20:27:20 (GMT)
commitca035a8b66cf681c428d4dc503d0c40a0eee9ab6 (patch)
tree92e7c7c6e54279fca6cbeee734765687edc6d21b /Lib/lib-tk
parent4645bb61fa27638f08c744cc48d9432a445fbe21 (diff)
downloadcpython-ca035a8b66cf681c428d4dc503d0c40a0eee9ab6.zip
cpython-ca035a8b66cf681c428d4dc503d0c40a0eee9ab6.tar.gz
cpython-ca035a8b66cf681c428d4dc503d0c40a0eee9ab6.tar.bz2
Fix buildbot failure
Diffstat (limited to 'Lib/lib-tk')
-rw-r--r--Lib/lib-tk/test/test_ttk/test_extensions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/test/test_ttk/test_extensions.py b/Lib/lib-tk/test/test_ttk/test_extensions.py
index 110249d..56d32e5 100644
--- a/Lib/lib-tk/test/test_ttk/test_extensions.py
+++ b/Lib/lib-tk/test/test_ttk/test_extensions.py
@@ -45,7 +45,7 @@ class LabeledScaleTest(unittest.TestCase):
# it tries calling instance attributes not yet defined.
ttk.LabeledScale(variable=myvar)
if hasattr(sys, 'last_type'):
- self.assertNotEqual(sys.last_type, tkinter.TclError)
+ self.assertNotEqual(sys.last_type, Tkinter.TclError)
def test_initialization(self):