8000 Fix a typo in an exception message (#204) · python-lsp/python-lsp-server@7a66037 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7a66037

Browse files
languitargatesn
authored andcommitted
Fix a typo in an exception message (#204)
1 parent 7dde7ca commit 7a66037

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyls/language_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def start_tcp_lang_server(bind_addr, port, handler_class):
4343

4444
def start_io_lang_server(rfile, wfile, handler_class):
4545
if not issubclass(handler_class, JSONRPCServer):
46-
raise ValueError("Handler class must be a subclass of LanguagJSONRPCServereServer")
46+
raise ValueError("Handler class must be a subclass of JSONRPCServer")
4747
log.info("Starting %s IO language server", handler_class.__name__)
4848
server = handler_class(rfile, wfile)
4949
server.handle()

0 commit comments

Comments
 (0)
0