Skip to content

Commit

Permalink
fix syntax bug in likequery
Browse files Browse the repository at this point in the history
  • Loading branch information
cl4u2 committed Oct 27, 2012
1 parent 9a54944 commit 9b84e62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsonif.py
Expand Up @@ -232,7 +232,7 @@ def likequery(self, request):
resp = self.qm.likequery(q, limit)
tend = time.time()
searchtime = tend - tsta
response = self.__fillresponse(resp, searchtim, req)
response = self.__fillresponse(resp, searchtime, req)

except Exception, e:
response = JsonResponse(RESPONSE_SERVERERROR, "Error [%s]" % str(e))
Expand Down

0 comments on commit 9b84e62

Please sign in to comment.