diff options
Diffstat (limited to 'lib/pure/strutils.nim')
-rw-r--r-- | lib/pure/strutils.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pure/strutils.nim b/lib/pure/strutils.nim index 72d9471d1..8e362a917 100644 --- a/lib/pure/strutils.nim +++ b/lib/pure/strutils.nim @@ -1206,7 +1206,8 @@ proc parseHexStr*(s: string): string {.noSideEffect, procvar, for pos, c in s: let val = hexCharToValueMap[ord(c)].ord if val == 17: - raise newException(ValueError, "Invalid hex char " & repr(c)) + raise newException(ValueError, "Invalid hex char `" & + c & "` (ord " & $c.ord & ")") if pos mod 2 == 0: buf = val else: |