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 553a100 commit 220266aCopy full SHA for 220266a
core/utils/device/device.py
@@ -73,7 +73,7 @@ def get_text(self):
73
self.get_screen(path=actual_image_path, log_level=logging.DEBUG)
74
text = ImageUtils.get_text(image_path=actual_image_path)
75
if Settings.PYTHON_VERSION < 3:
76
- return text.encode('utf-8').strip()
+ return text.decode('utf-8').strip()
77
else:
78
return text.encode('utf-8').strip().decode('utf-8')
79
core_tests/unit/utils/resources/unicode.png
88.2 KB
0 commit comments