3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-11 20:52:42 +01:00

automode: fix typo in loadDB()

This commit is contained in:
James Lu 2016-07-17 15:19:25 -07:00
parent 916817443e
commit 8169a2b751

View File

@ -30,7 +30,7 @@ def loadDB():
with open(dbname, "r") as f:
db.update(json.load(f))
except (ValueError, IOError, OSError):
log.info("Automode: failed to load links database %s; using the one in"
log.info("Automode: failed to load links database %s; creating a new one in "
"memory.", dbname)
def exportDB():