Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 569d12f

Browse files
Fix yet one error in checking Tcl version. (GH-10189)
1 parent e3685fd commit 569d12f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/tkinter/test/support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def deco(test):
6464
def newtest(self):
6565
if get_tk_patchlevel() < version:
6666
self.skipTest('requires Tcl version >= ' +
67-
'.'.join(map(str, get_tk_patchlevel())))
67+
'.'.join(map(str, version)))
6868
test(self)
6969
return newtest
7070
return deco

0 commit comments

Comments
 (0)