WIP: adding new fingerprint index

This commit is contained in:
JohnE 2016-02-18 11:01:45 -08:00
parent 558c19ccb8
commit 6c4a5b62e6
1 changed files with 4 additions and 0 deletions

View File

@ -87,6 +87,10 @@ class FingerprintIndex:
FROM md5_all
WHERE md5_db=?
''', [md5_db])
for row in rows:
# normalize the data, go from tuple to array
# https://docs.python.org/2/library/sqlite3.html
return rows
except Exception as ex:
logging.error(ex)