Skip to content

Commit

Permalink
Fixed the long URL support to correctly deal with sequences.
Browse files Browse the repository at this point in the history
  • Loading branch information
toastdriven committed Jul 23, 2010
1 parent 2c0061d commit b25d897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysolr.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def _select(self, params):
headers = {
'Content-type': 'application/x-www-form-urlencoded; charset=utf-8',
}
body = safe_urlencode(params, False)
body = safe_urlencode(params, True)
return self._send_request('POST', path, body=body, headers=headers)

def _mlt(self, params):
Expand Down

0 comments on commit b25d897

Please sign in to comment.