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

Skip to content

Commit ac38a11

Browse files
committed
Fix 'version version not identified' message.
1 parent c850463 commit ac38a11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setupext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@ def check_requirements(self):
12841284
tk_v = Tkinter.__version__.split()[-2]
12851285
except (AttributeError, IndexError):
12861286
# Tkinter.__version__ has been removed in python 3
1287-
tk_v = 'version not identified'
1287+
tk_v = 'not identified'
12881288

12891289
BackendAgg.force = True
12901290

0 commit comments

Comments
 (0)