Skip to content
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.

Commit

Permalink
minor - fix acessing the middleware cli on ctx obj
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubFrejlach committed Feb 12, 2024
1 parent f4f2e3a commit 327c4d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion griffon/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,7 @@ def text_output_products_contain_component(
# delete once we stop using middleware CLI completely
middleware_cli_purl_verbose_level = (
ctx.obj["VERBOSE"] > 3
and ctx.obj["MIDDLEWARE_CLI"]
and ctx.obj.get("MIDDLEWARE_CLI")
and not ctx.params["no_middleware"]
)

Expand Down

0 comments on commit 327c4d7

Please sign in to comment.