This commit is contained in:
Tim Bentley 2016-07-09 11:48:23 +01:00
parent 128cded43b
commit cd3d809610
4 changed files with 1 additions and 5 deletions

View File

@ -50,4 +50,3 @@ class ApiController(RegistryMixin, OpenLPMixin, RegistryProperties):
Registry().register('poller', self.poller)
self.ws_server = WebSocketServer()
self.http_server = HttpServer()

View File

@ -63,5 +63,3 @@ class ServerError(HttpError):
Make this a 500
"""
super(ServerError, self).__init__(500, 'Server Error')

View File

@ -60,4 +60,4 @@ def alert(request):
return {'results': {'success': success}}
register_endpoint(alert_endpoint)
register_endpoint(api_alert_endpoint)
register_endpoint(api_alert_endpoint)

View File

@ -65,4 +65,3 @@ class RemotesPlugin(Plugin, OpenLPMixin):
self.text_strings[StringContent.VisibleName] = {
'title': translate('RemotePlugin', 'Remote', 'container title')
}