mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
fix to use new param
This commit is contained in:
parent
c4b4c9a0c8
commit
aea47e0184
1 changed files with 2 additions and 2 deletions
|
@ -107,7 +107,7 @@ def getInternalSum( filePath ):
|
||||||
'--',
|
'--',
|
||||||
k_filebase + 'xw4/dawg2dict.py',
|
k_filebase + 'xw4/dawg2dict.py',
|
||||||
'--get-sum',
|
'--get-sum',
|
||||||
'--dict', filePath ],
|
'--dawg', filePath ],
|
||||||
stdout = subprocess.PIPE,
|
stdout = subprocess.PIPE,
|
||||||
stderr = subprocess.PIPE)
|
stderr = subprocess.PIPE)
|
||||||
results = proc.communicate()
|
results = proc.communicate()
|
||||||
|
@ -458,7 +458,7 @@ def getDicts( params ):
|
||||||
|
|
||||||
if needsUpgrade:
|
if needsUpgrade:
|
||||||
cur = { k_URL : k_urlbase + "/and_wordlists/" + path,
|
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],
|
k_LEN : dictLens[path],
|
||||||
}
|
}
|
||||||
result.append( cur )
|
result.append( cur )
|
||||||
|
|
Loading…
Reference in a new issue