Skip to content

Commit

Permalink
Another missing class rename missing
Browse files Browse the repository at this point in the history
  • Loading branch information
ratoaq2 committed Oct 12, 2016
1 parent 94f04d0 commit 4957a61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion medusa/server/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from ..helpers import create_https_certificates, generateApiKey


class SRWebServer(threading.Thread): # pylint: disable=too-many-instance-attributes
class AppWebServer(threading.Thread): # pylint: disable=too-many-instance-attributes
def __init__(self, options=None, io_loop=None):
threading.Thread.__init__(self)
self.daemon = True
Expand Down
4 changes: 2 additions & 2 deletions start.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
import medusa as app
from medusa import db, failed_history, logger, name_cache, network_timezones
from medusa.event_queue import Events
from medusa.server.core import SRWebServer
from medusa.server.core import AppWebServer
from medusa.tv import TVShow

import shutil_custom # pylint: disable=import-error
Expand Down Expand Up @@ -370,7 +370,7 @@ def start(self, args): # pylint: disable=too-many-branches,too-many-statements
}

# start web server
self.web_server = SRWebServer(self.web_options)
self.web_server = AppWebServer(self.web_options)
self.web_server.start()

# Fire up all our threads
Expand Down

0 comments on commit 4957a61

Please sign in to comment.