3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 22:14:08 +00:00

Merge pull request #4 from daveshah1/fix_filetop

Ignore whitespace at top of file
This commit is contained in:
Clifford Wolf 2018-01-22 14:46:25 +01:00 committed by GitHub
commit 236f6412c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -195,7 +195,8 @@ class SbyJob:
else:
line = line.rstrip()
# print(line)
if mode is None and (len(line) == 0 or line[0] == "#"):
continue
match = re.match(r"^\s*\[(.*)\]\s*$", line)
if match:
entries = match.group(1).split()
@ -525,4 +526,3 @@ class SbyJob:
with open("%s/%s" % (self.workdir, self.status), "w") as f:
for line in self.summary:
print(line, file=f)