print when skipping merging lines

This commit is contained in:
Sean Dague 2017-01-17 11:03:13 -05:00
parent dde87e097f
commit dae9f3be8d
1 changed files with 2 additions and 0 deletions

View File

@ -304,6 +304,8 @@ class LocalConf(object):
m = re.match(r"(\w+)\s*\=\s*(.+)", line)
if m:
self.set_local(m.group(1), m.group(2))
else:
print("SKIPPING ``%s`` from '%s'" % (line.lstrip(), lcfile))
else:
for section, name, value in lc._conf(group, conf):
self.set(group, conf, section, name, value)