Fix indenting in mergedb.py

Fixes #467.

Signed-off-by: Tim 'mithro' Ansell <me@mith.ro>
This commit is contained in:
Tim 'mithro' Ansell 2019-01-08 18:23:25 -08:00
parent ae52c3ae84
commit 3b13f8734f
1 changed files with 4 additions and 4 deletions

View File

@ -34,10 +34,10 @@ def run(fn_ins, fn_out, strict=False, verbose=False):
print(" New line : %s" % line)
assert not strict, "strict: got duplicate bits"
entries[tag] = bits
tags[tag] = (bits, line)
if bits != None:
bitss[bits] = (tag, line)
entries[tag] = bits
tags[tag] = (bits, line)
if bits != None:
bitss[bits] = (tag, line)
util.write_db_lines(fn_out, entries)