commit | 569d12f44847f18fc5b514b24e8ab901b0d96895 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Sun Oct 28 20:58:04 2018 +0200 |
committer | GitHub <noreply@github.com> | Sun Oct 28 20:58:04 2018 +0200 |
tree | cdf8a137deef68446eb476b44f8c7eded4faaa10 | |
parent | e3685fd5fdd8808acda81bfc12fb9702d4b59a60 [diff] |
Fix yet one error in checking Tcl version. (GH-10189)
diff --git a/Lib/tkinter/test/support.py b/Lib/tkinter/test/support.py index 1321c05..467a0b6 100644 --- a/Lib/tkinter/test/support.py +++ b/Lib/tkinter/test/support.py
@@ -64,7 +64,7 @@ def newtest(self): if get_tk_patchlevel() < version: self.skipTest('requires Tcl version >= ' + - '.'.join(map(str, get_tk_patchlevel()))) + '.'.join(map(str, version))) test(self) return newtest return deco