3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-12-25 04:02:45 +01:00

automode: fix typo in DB error message

This commit is contained in:
James Lu 2016-11-02 22:26:47 -07:00
parent 9950e0948f
commit 9f43c0fe17

View File

@ -35,7 +35,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; creating a new one in "
log.info("Automode: failed to load ACL database %s; creating a new one in "
"memory.", dbname)
def exportDB():