launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #24393
[Merge] ~twom/launchpad:fix-oci-message-for-snap-reference into launchpad:master
Tom Wardill has proposed merging ~twom/launchpad:fix-oci-message-for-snap-reference into launchpad:master.
Commit message:
This is not a snap package, the message should not say so.
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~twom/launchpad/+git/launchpad/+merge/379961
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~twom/launchpad:fix-oci-message-for-snap-reference into launchpad:master.
diff --git a/lib/lp/oci/interfaces/ocirecipe.py b/lib/lp/oci/interfaces/ocirecipe.py
index d93cbe9..e665c1e 100644
--- a/lib/lp/oci/interfaces/ocirecipe.py
+++ b/lib/lp/oci/interfaces/ocirecipe.py
@@ -62,7 +62,7 @@ class OCIRecipeBuildAlreadyPending(Exception):
def __init__(self):
super(OCIRecipeBuildAlreadyPending, self).__init__(
- "An identical build of this snap package is already pending.")
+ "An identical build of this OCI recipe is already pending.")
@error_status(http_client.BAD_REQUEST)