aboutsummaryrefslogtreecommitdiff
path: root/checklines.py3
diff options
context:
space:
mode:
Diffstat (limited to 'checklines.py3')
-rwxr-xr-xchecklines.py34
1 files changed, 3 insertions, 1 deletions
diff --git a/checklines.py3 b/checklines.py3
index e38bba1..dcc88e9 100755
--- a/checklines.py3
+++ b/checklines.py3
@@ -16,8 +16,10 @@ for line in sys.stdin:
continue
(keystrokes, char, num, comments)=match.groups()
nummatch=re.match(r'^U([0-9A-Fa-f]+)$', num)
+ # There's no number for multichar strings
if not nummatch:
- print("Number not parsed: {0}".format(line))
+ if len(char) == 1:
+ print("Number not parsed: {0}".format(line))
continue
x=int(nummatch.group(1),0x10)
c=chr(x)