Fix IPASN module

pull/16/head
Raphaël Vinot 2016-05-04 12:33:21 +02:00
parent ac1eb522c3
commit 789c8a25f3
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def handler(q=False):
ipasn = IPASN(host=request['config'].get('host'),
port=request['config'].get('port'), db=request['config'].get('db'))
values = ' \n '.join(list(ipasn.aggregate_history(toquery)))
values = ' \n '.join([' '.join(r)for r in ipasn.aggregate_history(toquery)])
if not values:
misperrors['error'] = 'Unable to find the history of this IP'
return misperrors