Merge pull request #109 from JackDandy/feature/FixRestart

Fix restart issue.
This commit is contained in:
JackDandy 2014-12-14 19:10:08 +00:00
commit 04a1538fb5
3 changed files with 2 additions and 4 deletions

View file

@ -35,6 +35,7 @@
* Fix table alignment on homepage
* Fix duplicate entries in cache database
* Fix network sorting on home page
* Fix restart issue
### 0.4.0 (2014-12-04 10:50:00 UTC)

View file

@ -25,7 +25,6 @@ import signal
import sys
import shutil
import subprocess
import socket
if sys.version_info < (2, 6):
print "Sorry, requires Python 2.6 or 2.7."

View file

@ -136,6 +136,4 @@ class WebServer(threading.Thread):
def shutDown(self):
self.alive = False
if self.server:
self.server.stop()
self.io_loop.stop()
self.io_loop.stop()