1
0
Fork 0
mirror of synced 2024-06-29 19:50:25 +12:00

Returned True if succesful, was not returning causing all my commands to think saving content was failing...

This commit is contained in:
Phxntxm 2016-07-18 15:02:41 -05:00
parent 27a2f8f45d
commit 2807f91a7b

View file

@ -30,6 +30,7 @@ def saveContent(key: str, content):
else:
jf.truncate()
json.dump(data, jf, indent=4)
return True
def getContent(key: str):