error in modules/python/gen2.py (Bug #643)
Description
On line 52 of modules/python/gen2.py it should be:
if( src NULL || src Py_None )
instead of
if( src NULL or src Py_None )
which causes the build to fail. This is against the trunk, r3862
Associated revisions
Merge pull request #643 from cuda-geek:refactor-softcascade-globbing
History
Updated by stathis -- over 14 years ago
On line 52 of modules/python/gen2.py it should be:
if( src == NULL || src == Py_None )
instead of
if( src == NULL or src == Py_None )
which causes the build to fail. This is against the trunk, r3862
(sorry the "or" operator was eaten up by trac.)
Updated by Vadim Pisarevsky over 14 years ago
fixed in the latest SVN version (~r3870 or later)
- Status changed from Open to Done
- (deleted custom field) set to fixed