More style fixes

This commit is contained in:
Strahinja Val Markovic 2013-03-24 15:21:54 -07:00
parent a63b2b6dd1
commit 9845d81fb0
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ from os.path import join, abspath, dirname
sys.path.insert( 0, join( abspath( dirname( __file__ ) ), 'jedi' ) )
try:
from jedi import Script
except ImportError, e:
except ImportError:
vimsupport.PostVimMessage(
'Error importing jedi. Make sure the jedi submodule has been checked out. '
'In the YouCompleteMe folder, run "git submodule update --init --recursive"')

View File

@ -26,7 +26,7 @@ import ycm_utils as utils
try:
import ycm_core
except ImportError, e:
except ImportError as e:
vimsupport.PostVimMessage(
'Error importing ycm_core. Are you sure you have placed a version 3.2+ '
'libclang.[so|dll|dylib] in folder "{0}"? See the Installation Guide in '