Fixed missing output= argument

This commit is contained in:
Fabio Manganiello 2018-04-29 16:38:05 +02:00
parent cbe676a29f
commit ef75339fef
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class SerialPlugin(Plugin):
try: data = json.loads(data)
except: pass
return Response(data)
return Response(output=data)
# vim:sw=4:ts=4:et: