Commit 4ba7c8b5 authored by Antoine Millet's avatar Antoine Millet
Browse files

Added "output" to the order of Reporter class output.

parent 27bfe273
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ class Reporter(object):

    def get_dict(self):
        return {'objects': self._reports,
                'tagorder': ['id', 'status', 'message']}
                'tagorder': ['id', 'status', 'message', 'output']}

    def success(self, oid, message, output=None):
        self._reports.append({'id': oid, 'status': 'success',