sts-sponsors team mailing list archive
-
sts-sponsors team
-
Mailing list archive
-
Message #05553
Re: [Merge] ~alexsander-souza/maas/+git/maas-release-tools:final_version_checks into ~maas-committers/maas/+git/maas-release-tools:main
Diff comments:
> diff --git a/maas_release_tools/scripts/release_status.py b/maas_release_tools/scripts/release_status.py
> index b1835ce..f23c3e3 100644
> --- a/maas_release_tools/scripts/release_status.py
> +++ b/maas_release_tools/scripts/release_status.py
> @@ -504,7 +518,7 @@ class MAASPPA(ReleaseStep):
> steps.extend(
> [
> f"Go to {self.ppa.web_link}/+edit-dependencies",
> - f"Add {', '.join(self.deps)} to Dependencies list",
> + f"Add {', '.join(map(lambda x: '~maas/ubuntu/'+x, self.deps))} to Dependencies list",
this could just be
', '.join(f"~maas/ubuntu/{dep}" for dep in self.deps)
> ]
> )
> return False, steps
--
https://code.launchpad.net/~alexsander-souza/maas/+git/maas-release-tools/+merge/437920
Your team MAAS Committers is requested to review the proposed merge of ~alexsander-souza/maas/+git/maas-release-tools:final_version_checks into ~maas-committers/maas/+git/maas-release-tools:main.
References