Doesn't seem to be working. I get an error page that says:
There was a problem with that comparison.
Error:
* TypeError
* request() got an unexpected keyword argument 'verbose'
Changing this:
def request(self, host, handler, request_body):
to this:
def request(self, host, handler, request_body, verbose = None):
seems to make it work. Are there any risks here that I'm not aware of?