Skip to content

Commit

Permalink
Fix exception when alias is unresolvable
Browse files Browse the repository at this point in the history
  • Loading branch information
salkinium committed Nov 18, 2023
1 parent b348a70 commit fcf9f2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lbuild/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from lbuild.api import Builder

__version__ = '1.21.7'
__version__ = '1.21.8'


class InitAction:
Expand Down
2 changes: 1 addition & 1 deletion lbuild/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def _get_node(self, key, check_dependencies=False, raise_on_fail=True):
try:
node = context_resolver._get_node(node._destination)
warning += node.description + "\n"
except LbuildException as e:
except le.LbuildException as e:
LOGGER.warning(warning)
raise e
if alias._print_warning:
Expand Down

0 comments on commit fcf9f2c

Please sign in to comment.