Fix bare except statement
Use Exception to catch all exceptions instead of a bare except statement.
This commit is contained in:
parent
48e3f2c968
commit
84998b5b5f
@ -39,7 +39,7 @@ class ConvertCompletionResponseToVimDatas_test( object ):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
eq_( expected_vim_data, vim_data )
|
eq_( expected_vim_data, vim_data )
|
||||||
except:
|
except Exception:
|
||||||
print( "Expected:\n'{0}'\nwhen parsing:\n'{1}'\nBut found:\n'{2}'".format(
|
print( "Expected:\n'{0}'\nwhen parsing:\n'{1}'\nBut found:\n'{2}'".format(
|
||||||
expected_vim_data,
|
expected_vim_data,
|
||||||
completion_data,
|
completion_data,
|
||||||
|
Loading…
Reference in New Issue
Block a user