Skip to content

Commit

Permalink
Fix a typo in an exception message (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
languitar authored and gatesn committed Dec 14, 2017
1 parent 7dde7ca commit 7a66037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyls/language_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def start_tcp_lang_server(bind_addr, port, handler_class):

def start_io_lang_server(rfile, wfile, handler_class):
if not issubclass(handler_class, JSONRPCServer):
raise ValueError("Handler class must be a subclass of LanguagJSONRPCServereServer")
raise ValueError("Handler class must be a subclass of JSONRPCServer")
log.info("Starting %s IO language server", handler_class.__name__)
server = handler_class(rfile, wfile)
server.handle()
Expand Down

0 comments on commit 7a66037

Please sign in to comment.