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 committed Apr 28, 2017
1 parent cdabad5 commit 2f789b7
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 2f789b7

Please sign in to comment.