Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Fix error message (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
vfreex committed Jul 6, 2021
1 parent 6b7c51c commit beea167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doozerlib/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ def filter_disabled(n, d):
self.assembly_basis_event = assembly_basis_event(self.get_releases_config(), self.assembly)
if self.assembly_basis_event:
if self.brew_event:
raise IOError(f'Cannot run with assembly basis event {assembly_basis_event} and --brew-event at the same time.')
raise IOError(f'Cannot run with assembly basis event {self.assembly_basis_event} and --brew-event at the same time.')
# If the assembly has a basis event, we constrain all brew calls to that event.
self.brew_event = self.assembly_basis_event
self.logger.warning(f'Constraining brew event to assembly basis for {self.assembly}: {self.brew_event}')
Expand Down

0 comments on commit beea167

Please sign in to comment.