mirror of
https://github.com/boostorg/build.git
synced 2026-02-14 00:32:11 +00:00
Fix error message in project.py
This commit is contained in:
@@ -593,7 +593,7 @@ Please consult the documentation at 'http://boost.org/boost-build2'."""
|
||||
try:
|
||||
return self.module2attributes[project].get(attribute)
|
||||
except:
|
||||
raise BaseException("No attribute '%s' for project" % (attribute, project))
|
||||
raise BaseException("No attribute '%s' for project %s" % (attribute, project))
|
||||
|
||||
def attributeDefault(self, project, attribute, default):
|
||||
"""Returns the value of the specified attribute in the
|
||||
|
||||
Reference in New Issue
Block a user