Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Ximinhan committed Dec 13, 2024
1 parent cb349d0 commit 72cbe4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyartcd/pyartcd/pipelines/gen_assembly.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ async def run(self):
message = (f"Hi @release-artists, please review assembly definition for {self.assembly}: {pr.html_url}\n\n"
f"The inflight release is {self.in_flight}")
if not self.skip_get_nightlies:
if latest_nightly not in candidate_nightlies and not self.ignore_non_x86_nightlies:
if not self.ignore_non_x86_nightlies and latest_nightly not in candidate_nightlies:
message += '\n\n:warning: note that `gen-assembly` did not select the latest accepted amd64 nightly'
else:
message += '\n\n:warning: note that `gen-assembly` was run with `--skip-get-nightlies`'
Expand Down

0 comments on commit 72cbe4e

Please sign in to comment.