OmniSharp completer error message using incorrect naming format

The not found message used to instruct users on how to install the OmniSharp completer was using an underscore while the argument to the install script uses a hyphen. The message now uses the correct naming format.
This commit is contained in:
Chris 2013-08-15 21:29:27 -07:00
parent bce44ef0fc
commit 039ffa5a75

View File

@ -34,7 +34,7 @@ import tempfile
SERVER_NOT_FOUND_MSG = ( 'OmniSharp server binary not found at {0}. ' +
'Did you compile it? You can do so by running ' +
'"./install.sh --omnisharp_completer".' )
'"./install.sh --omnisharp-completer".' )
class CsharpCompleter( ThreadedCompleter ):
"""