Skip to content
Snippets Groups Projects
Commit f0c73a1e authored by Paul "LeoNerd" Evans's avatar Paul "LeoNerd" Evans
Browse files

Extend individual list results into the main return list, don't append

parent b3511adb
No related branches found
No related tags found
No related merge requests found
...@@ -131,7 +131,7 @@ class ApplicationServicesHandler(object): ...@@ -131,7 +131,7 @@ class ApplicationServicesHandler(object):
service, protocol, fields service, protocol, fields
) )
if result: if result:
results.append(result) results.extend(result)
defer.returnValue(results) defer.returnValue(results)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment