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.
  • Loading branch information
Shan1024 committed Apr 25, 2017
1 parent cdabad5 commit 17745a3
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 17745a3

Please sign in to comment.