[devtools] fix QUnitResultController
authorJulien Cristau <julien.cristau@logilab.fr>
Thu, 26 Nov 2015 11:23:52 +0100
changeset 10934 3f18ec9d96dd
parent 10933 830f1ea52789
child 10935 049209b9e9d6
[devtools] fix QUnitResultController It needs to return something.
devtools/qunit.py
--- a/devtools/qunit.py	Thu Jun 25 17:13:33 2015 +0200
+++ b/devtools/qunit.py	Thu Nov 26 11:23:52 2015 +0100
@@ -170,6 +170,7 @@
     def publish(self, rset=None):
         event = self._cw.form['event']
         getattr(self, 'handle_%s' % event)()
+        return b''
 
     def handle_module_start(self):
         self.__class__._current_module_name = self._cw.form.get('name', '')