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

Ignore whitespace at top of file

Signed-off-by: David Shah <davey1576@gmail.com>
This commit is contained in:
David Shah 2018-01-22 13:00:32 +00:00
parent 221c8d24d7
commit c6d25f0045

View file

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