mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
remove unneeded param
This commit is contained in:
parent
7434c6a3a7
commit
1e5a474692
1 changed files with 2 additions and 2 deletions
|
@ -246,7 +246,7 @@ def getDicts( params ):
|
|||
if 0 == len(result): result = None
|
||||
return result
|
||||
|
||||
def getXlate( req, params ):
|
||||
def getXlate( params ):
|
||||
result = None
|
||||
logging.debug( "getXlate:" + json.dumps(params) )
|
||||
locale = params[k_LOCALE]
|
||||
|
@ -278,7 +278,7 @@ def getUpdates( req, params ):
|
|||
result[k_DICTS] = dictsResult
|
||||
if k_XLATEINFO in asJson:
|
||||
logging.debug( "found xlate info; calling getXlate" )
|
||||
xlateResult = getXlate( req, asJson[k_XLATEINFO] )
|
||||
xlateResult = getXlate( asJson[k_XLATEINFO] )
|
||||
if xlateResult:
|
||||
logging.debug( xlateResult )
|
||||
result[k_XLATEINFO] = xlateResult;
|
||||
|
|
Loading…
Reference in a new issue