diff options
author | tgingold <tgingold@users.noreply.github.com> | 2022-12-24 11:06:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 11:06:07 +0100 |
commit | 5bca94f83b0d44297f943ff0d0237ec216fc29e9 (patch) | |
tree | 1b045b05c55baeb2676cdbb0dcb00393c24557db /pyGHDL/dom/Sequential.py | |
parent | 26bb3c572eaffafafd8de8ef09b8acc34f91656f (diff) | |
parent | 08a338e9568c333929c6863be60580619e3e77ff (diff) | |
download | ghdl-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/dom/Sequential.py')
-rw-r--r-- | pyGHDL/dom/Sequential.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/dom/Sequential.py b/pyGHDL/dom/Sequential.py index 0258d3a14..296f57f52 100644 --- a/pyGHDL/dom/Sequential.py +++ b/pyGHDL/dom/Sequential.py @@ -365,7 +365,7 @@ class ForLoopStatement(VHDLModel_ForLoopStatement, DOMMixin): else: pos = Position.parse(loopNode) raise DOMException( - f"Unknown discete range kind '{rangeKind.name}' in for...loop statement at line {pos.Line}." + f"Unknown discrete range kind '{rangeKind.name}' in for...loop statement at line {pos.Line}." ) statementChain = nodes.Get_Sequential_Statement_Chain(loopNode) |