search query string: replace %(lat)s and %(lng)s with position in my profile
This commit is contained in:
parent
d38656540e
commit
c10199204f
1 changed files with 1 additions and 1 deletions
|
|
@ -367,7 +367,7 @@ class AuMBrowser(Browser):
|
||||||
# retrieve query
|
# retrieve query
|
||||||
self.login()
|
self.login()
|
||||||
|
|
||||||
r = self.api_request('users?count=100&offset=0&%s' % self.search_query)
|
r = self.api_request('users?count=100&offset=0&%s' % (self.search_query % {'lat': self.my_coords[0], 'lng': self.my_coords[1]}))
|
||||||
ids = [s['id'] for s in r['results']]
|
ids = [s['id'] for s in r['results']]
|
||||||
return set(ids)
|
return set(ids)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue