diff --git a/build-tools/capi_parser/src/coreImpl/check/check.py b/build-tools/capi_parser/src/coreImpl/check/check.py index b888cae43a6e00d29107956592c6c0da0cb3edb8..bd0fa076c69e6ff2bceae0b293f3559467ae6a8c 100644 --- a/build-tools/capi_parser/src/coreImpl/check/check.py +++ b/build-tools/capi_parser/src/coreImpl/check/check.py @@ -73,7 +73,7 @@ def result_to_json(check_result): txt_resul.append('api_check: false') else: for result in check_result: - location = f'{result.location}(line:{result.locationLine}, col:{result.locationColumn})' + location = f'{result.location}(line:{result.location_line}, col:{result.location_column})' message = 'API check error of [{}]:{}'.format(result.error_type['description'], result.error_info) txt_resul.append(OutputTxt(result.error_type['id'], result.level, location, result.file_name, message)) txt_resul.append('api_check: false')