Fix delete_lexicon

This commit is contained in:
Tim Van Baak 2020-01-29 14:35:33 -08:00
parent 027933b645
commit 4a49433cde
1 changed files with 3 additions and 3 deletions

View File

@ -89,9 +89,9 @@ def delete_lexicon(lex, purge=False):
raise ArgumentError("Invalid lexicon: '{}'".format(lex))
# Delete the lexicon from the index
with json_rw('lexicon', 'index.json') as j:
if lex.id in j:
del j[lex.id]
with json_rw('lexicon', 'index.json') as index:
if lex.name in index:
del index[lex.name]
# Delete the lexicon data folder if purging
if purge: