fix to use new param

This commit is contained in:
Eric House 2020-05-02 19:10:04 -07:00
parent c4b4c9a0c8
commit aea47e0184

View file

@ -107,7 +107,7 @@ def getInternalSum( filePath ):
'--',
k_filebase + 'xw4/dawg2dict.py',
'--get-sum',
'--dict', filePath ],
'--dawg', filePath ],
stdout = subprocess.PIPE,
stderr = subprocess.PIPE)
results = proc.communicate()
@ -458,7 +458,7 @@ def getDicts( params ):
if needsUpgrade:
cur = { k_URL : k_urlbase + "/and_wordlists/" + path,
k_INDEX : index, k_ISUM: dictSums[path][1],
k_INDEX : index, k_ISUM: dictSums[path][-1],
k_LEN : dictLens[path],
}
result.append( cur )