We had the core of the check in place - just failed to check the
property we were iterating over. Doh.
Signed-off-by: Dan Scott <dan@coffeecode.net>
Signed-off-by: Lebbeous Fogle-Weekley <lebbeous@esilibrary.com>
continue
for entry in properties[prop_key]:
- if ['file'] == short_pf:
- print("%s:%d: Duplicate key '%s' in line [%s]" % (short_pf, line_num, prop_key, line[0:-1]))
+ if entry['file'] == short_pf:
+ print("File: %s:%d"% (short_pf, line_num))
+ print("\tDuplicate key '%s' in line [%s]" % (prop_key, line[0:-1]))
continue
properties[prop_key].append({'value': value, 'file': short_pf})