Skip to content

Commit

Permalink
Fix solver.py lint
Browse files Browse the repository at this point in the history
Signed-off-by: Dhruv Govil <[email protected]>
  • Loading branch information
dgovil committed Oct 22, 2023
1 parent 5621e93 commit 2313693
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/rez/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,8 @@ def _create_phase(status=None):
searched = "; ".join(self.solver.package_paths)
requested = ", ".join(requesters)

fail_message = "package family not found: {}, was required by: {} (searched: {})".format(req.name, requested, searched)
fail_message = ("package family not found: {}, was required by: {} (searched: {})"
.format(req.name, requested, searched))
if not config.error_on_missing_variant_requires:
print(fail_message, file=sys.stderr)
return _create_phase(SolverStatus.failed)
Expand Down

0 comments on commit 2313693

Please sign in to comment.