Browse Source

Fix restart issue.

pull/109/head
JackDandy 11 years ago
parent
commit
57f01e6584
  1. 1
      CHANGES.md
  2. 1
      SickBeard.py
  3. 2
      sickbeard/webserveInit.py

1
CHANGES.md

@ -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)

1
SickBeard.py

@ -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."

2
sickbeard/webserveInit.py

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