mirror of
https://git.rtems.org/rtems-docs/
synced 2025-10-18 18:35:33 +08:00
waf: Fix python3 issues.
- Found after updating to FreeBSD-12.0 which defaults to Python3.
This commit is contained in:
@@ -142,7 +142,7 @@ class compliance:
|
||||
self.data = None
|
||||
|
||||
def load(self, name):
|
||||
with open(name, 'rb') as f:
|
||||
with open(name, 'r') as f:
|
||||
data = csv.reader(f, delimiter = ',', quotechar = '"')
|
||||
hdr = None
|
||||
rows = []
|
||||
|
Reference in New Issue
Block a user