[fix] real async result parsing

This commit is contained in:
Adam Tauber 2016-02-19 12:32:14 +01:00
parent 34afcf2541
commit dcc612f673
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ class MultiRequest(object):
# calling callbacks
for h in success_list:
th = threading.Thread(
target=self.requests[h].finish(),
target=self.requests[h].finish,
name='search_request',
)
th.start()