diff options
author | user <user@debian> | 2015-02-13 10:43:25 -0300 |
---|---|---|
committer | user <user@debian> | 2015-02-13 10:43:25 -0300 |
commit | 602e52dbaca44529e110940aad68a3904316d821 (patch) | |
tree | 8b84f3f7aedb3273f0ee6f6e847dbf2d8e05be80 /checklines.py3 | |
parent | more convenience multi-key sequences (diff) | |
parent | Some stuff I added a while ago and didn't commit... Long dashes, etc. (diff) | |
download | dotXCompose-602e52dbaca44529e110940aad68a3904316d821.tar.gz dotXCompose-602e52dbaca44529e110940aad68a3904316d821.tar.bz2 dotXCompose-602e52dbaca44529e110940aad68a3904316d821.zip |
Merge branch 'master' of github.com:kragen/xcompose
Conflicts:
dotXCompose
Diffstat (limited to 'checklines.py3')
-rw-r--r-- | checklines.py3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checklines.py3 b/checklines.py3 index dcf76cb..e38bba1 100644 --- a/checklines.py3 +++ b/checklines.py3 @@ -15,7 +15,7 @@ for line in sys.stdin: print("({0})".format(line)) continue (keystrokes, char, num, comments)=match.groups() - nummatch=re.match(r'U([0-9A-Fa-f]+)', num) + nummatch=re.match(r'^U([0-9A-Fa-f]+)$', num) if not nummatch: print("Number not parsed: {0}".format(line)) continue |