aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/libghdl/errorout_memory.py
diff options
context:
space:
mode:
authortgingold <tgingold@users.noreply.github.com>2022-12-24 11:06:07 +0100
committerGitHub <noreply@github.com>2022-12-24 11:06:07 +0100
commit5bca94f83b0d44297f943ff0d0237ec216fc29e9 (patch)
tree1b045b05c55baeb2676cdbb0dcb00393c24557db /pyGHDL/libghdl/errorout_memory.py
parent26bb3c572eaffafafd8de8ef09b8acc34f91656f (diff)
parent08a338e9568c333929c6863be60580619e3e77ff (diff)
downloadghdl-5bca94f83b0d44297f943ff0d0237ec216fc29e9.tar.gz
ghdl-5bca94f83b0d44297f943ff0d0237ec216fc29e9.tar.bz2
ghdl-5bca94f83b0d44297f943ff0d0237ec216fc29e9.zip
Merge pull request #2281 from Paebbels/paebbels/encoding
Configurable encoding for pyGHDL
Diffstat (limited to 'pyGHDL/libghdl/errorout_memory.py')
-rw-r--r--pyGHDL/libghdl/errorout_memory.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/errorout_memory.py b/pyGHDL/libghdl/errorout_memory.py
index 9f75d0331..d0847417e 100644
--- a/pyGHDL/libghdl/errorout_memory.py
+++ b/pyGHDL/libghdl/errorout_memory.py
@@ -36,6 +36,7 @@ from ctypes import c_int8, c_int32, c_char_p, Structure
from pyTooling.Decorators import export
+from pyGHDL.libghdl import ENCODING
from pyGHDL.libghdl._types import ErrorIndex
from pyGHDL.libghdl._decorator import BindToLibGHDL
@@ -122,7 +123,7 @@ def Get_Error_Message(Idx: ErrorIndex) -> str:
:param Idx: Index from 1 to ``Nbr_Messages`` See :func:`Get_Nbr_Messages`.
:return: Error message.
"""
- return _Get_Error_Message(Idx).decode("iso-8859-1")
+ return _Get_Error_Message(Idx).decode(ENCODING)
@export