Small stylistic change

This commit is contained in:
nop 2013-12-11 10:27:29 +01:00
parent 96762e2a7e
commit c8b0f466c0

View File

@ -152,8 +152,8 @@ class CsharpCompleter( Completer ):
path_to_solutionfile = os.path.join( folder, solutionfile ) path_to_solutionfile = os.path.join( folder, solutionfile )
# we need to pass the command to Popen as a string since we're passing # we need to pass the command to Popen as a string since we're passing
# shell=True (as recommended by Python's doc) # shell=True (as recommended by Python's doc)
command = omnisharp + ' -p ' + str( self._omnisharp_port ) + ' -s ' + \ command = ( omnisharp + ' -p ' + str( self._omnisharp_port ) + ' -s ' +
path_to_solutionfile path_to_solutionfile )
if not utils.OnWindows(): if not utils.OnWindows():
command = 'mono ' + command command = 'mono ' + command