Skip to content

Commit 2b32930

Browse files
committed
[LSP] Fix missing closing parenthesis
1 parent 3e6ee26 commit 2b32930

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-sourcekit-lsp/test-sourcekit-lsp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def main():
138138
skargs = [args.sourcekit_lsp, '--sync', '-Xclangd', '-sync']
139139
p = subprocess.Popen(skargs, stdin=subprocess.PIPE, stdout=subprocess.PIPE, encoding='utf-8')
140140
out, _ = p.communicate(lsp.script)
141-
print(out.encode(encoding='ascii', errors='replace')
141+
print(out.encode(encoding='ascii', errors='replace'))
142142
print('')
143143

144144
if p.returncode == 0:

0 commit comments

Comments
 (0)