Commit b7c8e9e8 authored by berak's avatar berak

python: fix type error msg

parent c2096771
...@@ -73,7 +73,7 @@ struct PyOpenCV_Converter< ${cname} > ...@@ -73,7 +73,7 @@ struct PyOpenCV_Converter< ${cname} >
return true; return true;
} }
${mappable_code} ${mappable_code}
failmsg("Expected ${cname} for argument '%%s'", name); failmsg("Expected ${cname} for argument '%s'", name);
return false; return false;
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment