Skip to content

Commit f684c4a

Browse files
author
Roland Hedberg
committed
Don't mind empty lines.
1 parent 647f6c5 commit f684c4a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/merge_metadata.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@
6969

7070
for line in open(args.conf).readlines():
7171
line = line.strip()
72-
if line[0] == "#":
72+
if len(line) == 0:
73+
continue
74+
elif line[0] == "#":
7375
continue
7476
spec = line.split(" ")
7577

0 commit comments

Comments
 (0)