allow tabstops as whitespace before input file comments (#2808)
This commit is contained in:
parent
1c89ccb27d
commit
764906e1af
@ -97,6 +97,8 @@ def parse_inputfile(file, log):
|
||||
# url
|
||||
if " #" in line:
|
||||
line = line.partition(" #")[0]
|
||||
elif "\t#" in line:
|
||||
line = line.partition("\t#")[0]
|
||||
if gconf or lconf:
|
||||
yield util.ExtendedUrl(line, gconf, lconf)
|
||||
gconf = []
|
||||
|
Loading…
x
Reference in New Issue
Block a user