automatically writing uncracked hashes to a file for eventual further processing

This commit is contained in:
Miroslav Stampar
2012-05-08 10:46:05 +00:00
parent 80ee687b41
commit a121339395
2 changed files with 21 additions and 2 deletions

View File

@@ -486,12 +486,12 @@ class Dump:
if conf.replicate:
rtable.endTransaction()
logger.info("Table '%s.%s' dumped to sqlite3 file '%s'" % (db, table, replication.dbpath))
logger.info("table '%s.%s' dumped to sqlite3 file '%s'" % (db, table, replication.dbpath))
else:
dataToDumpFile(dumpFP, "\n")
dumpFP.close()
logger.info("Table '%s.%s' dumped to CSV file '%s'" % (db, table, dumpFileName))
logger.info("table '%s.%s' dumped to CSV file '%s'" % (db, table, dumpFileName))
def dbColumns(self, dbColumnsDict, colConsider, dbs):
for column in dbColumnsDict.keys():