From 569d12f44847f18fc5b514b24e8ab901b0d96895 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sun, 28 Oct 2018 20:58:04 +0200 Subject: [PATCH] Fix yet one error in checking Tcl version. (GH-10189) --- Lib/tkinter/test/support.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/tkinter/test/support.py b/Lib/tkinter/test/support.py index 1321c056c2..467a0b66c2 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 -- 2.40.0