Commit ed1932df authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

fixed python version in yet another place.

parent 30f1ab05
...@@ -3888,7 +3888,7 @@ PyObject* init_cv() ...@@ -3888,7 +3888,7 @@ PyObject* init_cv()
m = Py_InitModule(OLD_MODULESTR, old_methods); m = Py_InitModule(OLD_MODULESTR, old_methods);
d = PyModule_GetDict(m); d = PyModule_GetDict(m);
PyDict_SetItemString(d, "__version__", PyString_FromString("$Rev: 4557 $")); PyDict_SetItemString(d, "__version__", PyString_FromString(CV_VERSION));
PyDict_SetItemString(d, "error", opencv_error); PyDict_SetItemString(d, "error", opencv_error);
// Couple of warnings about strict aliasing here. Not clear how to fix. // Couple of warnings about strict aliasing here. Not clear how to fix.
......
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