Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions SCons/Environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -1304,7 +1304,7 @@ def __getattr__(self, name):
other parts of SCons depend on seeing the :exc:`AttributeError` that
triggers this call, so all we do is produce our own message.

.. versioniadded:: NEXT_RELEASE
.. versionadded:: NEXT_RELEASE
"""
raise AttributeError(
f"Builder or other environment method {name!r} not found.\n"
Expand All @@ -1319,8 +1319,7 @@ def __getattr__(self, name):
#######################################################################

def get_builder(self, name):
"""Fetch the builder with the specified name from the environment.
"""
"""Fetch the builder with the specified name from the environment."""
try:
return self._dict['BUILDERS'][name]
except KeyError:
Expand Down
Loading