Skip to content

Commit

Permalink
Boost: Change ConanInvalidConfiguration to Exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Croydon committed Jan 5, 2020
1 parent 7c7a810 commit 1ac6417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/boost/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def _python_includes(self):
if os.path.isfile(python_h):
self.output.info('found Python.h: %s' % python_h)
return candidate.replace('\\', '/')
raise ConanInvalidConfiguration("couldn't locate Python.h - make sure you have installed python development files")
raise Exception("couldn't locate Python.h - make sure you have installed python development files")

@property
def _python_libraries(self):
Expand Down

0 comments on commit 1ac6417

Please sign in to comment.