summaryrefslogtreecommitdiff
path: root/unscrambler.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-08-12 10:32:51 -0700
committerScott Gasch <[email protected]>2022-08-12 10:32:51 -0700
commit3390bd2d689b547f11e021fc67c90c2a4204552f (patch)
tree86e39a33b0be1176aaa1815cb1e32a9de9c187df /unscrambler.py
parent1263057778bbf2229f03b1864428319b0918aaff (diff)
Update requirements.txt and fix a bug in unscrambler.
Diffstat (limited to 'unscrambler.py')
-rw-r--r--unscrambler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/unscrambler.py b/unscrambler.py
index 3ccddbb..d70db99 100644
--- a/unscrambler.py
+++ b/unscrambler.py
@@ -131,7 +131,7 @@ class Unscrambler(object):
"""Returns the current indexfile location."""
if indexfile is None:
if 'unscrambler_default_indexfile' in config.config:
- indexfile = config.config['unscramble_indexfile']
+ indexfile = config.config['unscrambler_default_indexfile']
else:
indexfile = "/usr/share/dict/sparse_index"
else: