]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
Revert "hwdb/parse_hwdb.py: open files with UTF-8 mode"
authorMartin Pitt <martin.pitt@ubuntu.com>
Fri, 25 Nov 2016 06:59:37 +0000 (07:59 +0100)
committerMartin Pitt <martin.pitt@ubuntu.com>
Fri, 25 Nov 2016 06:59:37 +0000 (07:59 +0100)
"encoding" is not a valid Python 2 keyword, and despite the hashbang this
script can be called with Python 2.

This reverts commit 115a10c58d343d00b73bd9442f7ce6c294debad8.

hwdb/parse_hwdb.py

index 556b85919163a45dc00462e4b5366c01de6a2ade..5d4c5ea64df1babca4f8128911a409168bc70209 100755 (executable)
@@ -133,8 +133,7 @@ def convert_properties(group):
 def parse(fname):
     grammar = hwdb_grammar()
     try:
-        with open(fname, 'r', encoding='UTF-8') as f:
-            parsed = grammar.parseFile(f)
+        parsed = grammar.parseFile(fname)
     except ParseBaseException as e:
         error('Cannot parse {}: {}', fname, e)
         return []