diff options
author | Lennart Poettering <lennart@poettering.net> | 2022-04-28 17:41:48 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2022-04-28 17:42:25 +0200 |
commit | 133a0003691daafaefa378f770ae01d01931787d (patch) | |
tree | 4453cab4d603dd8eaf2ab54add2e7323568aed9f | |
parent | update TODO (diff) | |
download | systemd-133a0003691daafaefa378f770ae01d01931787d.tar.xz systemd-133a0003691daafaefa378f770ae01d01931787d.zip |
hwdb: make sure "ninja update-hwdb" works on f35
let's restore compatibility with pyparsing from fedora 35, i.e.:
python3-pyparsing-2.4.7-9.fc35.noarch
-rwxr-xr-x | hwdb.d/ids_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hwdb.d/ids_parser.py b/hwdb.d/ids_parser.py index 811c12559b..ed2c615508 100755 --- a/hwdb.d/ids_parser.py +++ b/hwdb.d/ids_parser.py @@ -20,7 +20,7 @@ COMMENTLINE = pythonStyleComment + EOL EMPTYLINE = LineEnd() text_eol = lambda name: Regex(r'[^\n]+')(name) + EOL -ParserElement.set_default_whitespace_chars(' \n') +ParserElement.setDefaultWhitespaceChars(' \n') def klass_grammar(): klass_line = Literal('C ').suppress() + NUM2('klass') + text_eol('text') |