# HG changeset patch # User Julien Cristau # Date 1448533432 -3600 # Node ID 3f18ec9d96dd934f5e4ffa4a42919686164bb76a # Parent 830f1ea527892dae050b63dfd9da344abdd12d78 [devtools] fix QUnitResultController It needs to return something. diff -r 830f1ea52789 -r 3f18ec9d96dd 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', '')