Skip to content

Commit 1c5062f

Browse files
authored
Fix TCP server startup (#295)
1 parent f57323e commit 1c5062f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ __pycache__/
33
*.py[cod]
44
*$py.class
55

6+
# IntelliJ
7+
*.iml
8+
*.ipr
9+
*.iws
10+
.idea/
11+
out/
12+
613
# C extensions
714
*.so
815

@@ -45,6 +52,7 @@ coverage.xml
4552
*,cover
4653
.hypothesis/
4754
pytest.xml
55+
.pytest_cache/
4856

4957
# Translations
5058
*.mo

pyls/python_ls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def setup(self):
2828
self.delegate = self.DELEGATE_CLASS(self.rfile, self.wfile)
2929

3030
def handle(self):
31-
self.delegate.handle()
31+
self.delegate.start()
3232

3333

3434
def start_tcp_lang_server(bind_addr, port, handler_class):

0 commit comments

Comments
 (0)