Commit 569d12f4 authored by Serhiy Storchaka's avatar Serhiy Storchaka Committed by GitHub

Fix yet one error in checking Tcl version. (GH-10189)

parent e3685fd5
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment