Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d9dcbf commit 2589521Copy full SHA for 2589521
1 file changed
lib/core/common.py
@@ -2682,7 +2682,7 @@ def decodeIntToUnicode(value):
2682
Decodes inferenced integer value with usage of current page encoding
2683
"""
2684
try:
2685
- return struct.pack('B' if value<256 else '>H', value).decode(kb.pageEncoding or UNICODE_ENCODING)
+ return unichr(value)
2686
except:
2687
return INFERENCE_UNKNOWN_CHAR
2688
0 commit comments