euscan: fixed handler name with remote-id

Signed-off-by: volpino <fox91@anche.no>
This commit is contained in:
volpino 2012-07-28 18:16:16 +02:00
parent f470c4f059
commit c49914af23
1 changed files with 2 additions and 1 deletions

View File

@ -39,5 +39,6 @@ def scan(pkg):
)
if scan_remote:
for url, pv in scan_remote(pkg, remote_data):
ret.append((url, pv, HANDLER_NAME, CONFIDENCE))
name = "%s, %s" % (HANDLER_NAME, remote_type)
ret.append((url, pv, name, CONFIDENCE))
return ret