Auto merge of #2813 - micbou:fix-bare-except-statements, r=puremourning
[READY] Fix bare except statement See PR https://github.com/Valloric/ycmd/pull/863. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/valloric/youcompleteme/2813) <!-- Reviewable:end -->
This commit is contained in:
commit
b4ab6da86d
@ -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