Commit 10de037f authored by Denis Bilenko's avatar Denis Bilenko

baseserver: fix AttributeError('kill') Server's kill() was renamed to close(). Thanks to Vitaly.

parent 98873dcd
......@@ -236,7 +236,7 @@ class BaseServer(object):
try:
self.start_accepting()
except:
self.kill()
self.close()
raise
def close(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment