Skip to content

Commit

Permalink
Fix incorrect exception message
Browse files Browse the repository at this point in the history
This commit changes the exception message from CSharp to Python.

Signed-off-by: shan1024 <gambit1024@gmail.com>
  • Loading branch information
Shan1024 authored and benoitf committed Jun 14, 2017
1 parent 62f550b commit ac2f395
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ protected Process startLanguageServerProcess(String projectPath) throws Language
try {
return processBuilder.start();
} catch (IOException e) {
throw new LanguageServerException("Can't start CSharp language server", e);
throw new LanguageServerException("Can't start Python language server", e);
}
}

Expand Down

0 comments on commit ac2f395

Please sign in to comment.