mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +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
|
if 0 == len(result): result = None
|
||||||
return result
|
return result
|
||||||
|
|
||||||
def getXlate( req, params ):
|
def getXlate( params ):
|
||||||
result = None
|
result = None
|
||||||
logging.debug( "getXlate:" + json.dumps(params) )
|
logging.debug( "getXlate:" + json.dumps(params) )
|
||||||
locale = params[k_LOCALE]
|
locale = params[k_LOCALE]
|
||||||
|
@ -278,7 +278,7 @@ def getUpdates( req, params ):
|
||||||
result[k_DICTS] = dictsResult
|
result[k_DICTS] = dictsResult
|
||||||
if k_XLATEINFO in asJson:
|
if k_XLATEINFO in asJson:
|
||||||
logging.debug( "found xlate info; calling getXlate" )
|
logging.debug( "found xlate info; calling getXlate" )
|
||||||
xlateResult = getXlate( req, asJson[k_XLATEINFO] )
|
xlateResult = getXlate( asJson[k_XLATEINFO] )
|
||||||
if xlateResult:
|
if xlateResult:
|
||||||
logging.debug( xlateResult )
|
logging.debug( xlateResult )
|
||||||
result[k_XLATEINFO] = xlateResult;
|
result[k_XLATEINFO] = xlateResult;
|
||||||
|
|
Loading…
Reference in a new issue