summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhwdb/parse_hwdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hwdb/parse_hwdb.py b/hwdb/parse_hwdb.py
index ec97ed7807..18f13edd0a 100755
--- a/hwdb/parse_hwdb.py
+++ b/hwdb/parse_hwdb.py
@@ -123,7 +123,7 @@ def property_grammar():
Word(nums + ':')('VALUE')
]
- grammar = Or(fixed_props + kbd_props + abs_props)
+ grammar = Or(fixed_props + kbd_props + abs_props) + EOL
return grammar