Revert "parse_hwdb: enforce the ":*" suffix"

This reverts commit ad2d8e61ee.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2020-11-03 14:26:51 +01:00
parent 3a7771c9c4
commit a21ac934a1
1 changed files with 2 additions and 3 deletions

View File

@ -202,9 +202,8 @@ def check_matches(groups):
except ParseBaseException as e:
error('Pattern {!r} is invalid: {}', rest, e)
continue
if not rest.endswith(':*'):
error("pattern {!r} does not end with ':*'", match)
if rest[-1] not in '*:':
error('pattern {} does not end with "*" or ":"', match)
matches.sort()
prev = None