summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFbenas <philbeansburton@gmail.com>2020-11-08 14:04:42 +0000
committerFbenas <philbeansburton@gmail.com>2020-11-08 14:04:42 +0000
commita8a6b4e3117fef17c63f0677aa43496ebdaf54e1 (patch)
tree52b4423eb76574a44e3a0d896ff2b5a21df9aae8
parent800816300ef0712aa586f85debcbc76982dd0c30 (diff)
Fix calls using 'wordnet' dict opposed to 'wn'HEADmaster
-rwxr-xr-xbladictionary.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bladictionary.py b/bladictionary.py
index 4e3b196..6b33c08 100755
--- a/bladictionary.py
+++ b/bladictionary.py
@@ -347,7 +347,7 @@ def main():
if word_dict == "oed":
items = parse_oed(word)
- elif word_dict == "wn":
+ elif word_dict == "wn" or word_dict == "wordnet":
xml = get_xml(word, word_dict)
if xml is None: