We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f87bf59 commit b75f473Copy full SHA for b75f473
db.py
@@ -33,7 +33,7 @@ def listDb():
33
return(1)
34
else:
35
for name, date, hash, key in items:
36
- print("{} {} {} {}".format(name, date, hash, key))
+ print("Name: {} Date: {} Hash: {} Key: {}".format(name, date, hash, key))
37
38
def clearDb():
39
cursor.execute("DROP TABLE IF EXISTS history")
@@ -48,7 +48,7 @@ def searchDb(identifier):
48
49
50
51
52
53
def exportDb(newPath):
54
try:
0 commit comments