Hello all,
In CherryPy 3.0.1, file _cpengine.py, line 290, one can
read:
def SIGTERM(signum=None, frame=None):
cherrypy.server.stop()
self.stop()
The 'self' parameter is missing, isn't it?
We should have:
def SIGTERM(self, signum=None, frame=None):
cherrypy.server.stop()
self.stop()
Thanks for your answer!
-- Nicolas Grilly
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "cherrypy-users" group.
To post to this group, send email to cherrypy-users googlegroups.com
To unsubscribe from this group, send email to
cherrypy-users-unsubscribe googlegroups.com
For more options, visit this group at h
ttp://groups.google.com/group/cherrypy-users?hl=en
-~----------~----~----~----~------~----~------~--~---
|