Skip to content

Commit 114555e

Browse files
Dmitry SidnevWovchena
andauthored
Fix error message
Co-authored-by: Zlobin Vladimir <[email protected]>
1 parent 86a836c commit 114555e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demos/common/python/openvino/model_zoo/model_api/models/background_matting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def preprocess(self, inputs):
138138
if target_shape is None:
139139
target_shape = meta['original_shape']
140140
elif meta['original_shape'] != target_shape:
141-
raise WrapperError(self.__model__, 'Image inputs should have equal shapes bot got: {} vs {}'
141+
raise WrapperError(self.__model__, 'Image inputs must have equal shapes but got: {} vs {}'
142142
.format(target_shape, meta['original_shape']))
143143
return dict_inputs, meta
144144

0 commit comments

Comments
 (0)