From: Serhiy Storchaka Date: Sun, 28 Oct 2018 18:58:04 +0000 (+0200) Subject: Fix yet one error in checking Tcl version. (GH-10189) X-Git-Tag: v3.8.0a1~638 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=569d12f44847f18fc5b514b24e8ab901b0d96895;p=thirdparty%2FPython%2Fcpython.git 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 1321c056c2a2..467a0b66c265 100644 --- a/Lib/tkinter/test/support.py +++ b/Lib/tkinter/test/support.py @@ -64,7 +64,7 @@ def requires_tcl(*version): 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