Skip to content

Commit 7fa6ab6

Browse files
committed
update UCS-4 not supported error message
Tk 8.6.13 solves UCS-4 support issue. Close #189.
1 parent 3daa558 commit 7fa6ab6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

nvpy/tk.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ def __init__(self, char):
2020
self.char = char
2121

2222
def __str__(self):
23-
return ('non-BMP character {} is not supported. '
24-
'Please rebuild python interpreter and libraries with UCS-4 support. '
23+
return ('non-BMP character {} is not supported in the current Tk version. '
24+
'The latest Tk will fix this issue. Please consider upgrading to latest OS, Python, and libraries. '
25+
'Another option is rebuild Python interpreter and libraries with UCS-4 support. '
2526
'See https://github.com/cpbotha/nvpy/blob/master/docs/ucs-4.rst').format(self.char)
2627

2728

0 commit comments

Comments
 (0)