From 9b8781f041a257634ab4dd3c9964c8135aca896a Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Jul 21 2020 16:13:04 +0000 Subject: fix grammar in missing content set message Don't refer to Pulp with the definite article. It's simply "Pulp". --- diff --git a/server/odcs/server/backend.py b/server/odcs/server/backend.py index 9c5d131..5717d6b 100644 --- a/server/odcs/server/backend.py +++ b/server/odcs/server/backend.py @@ -727,7 +727,7 @@ def generate_pulp_compose(compose): ignore_absent_pulp_repos = compose.flags & COMPOSE_FLAGS["ignore_absent_pulp_repos"] if len(repos) != len(content_sets): found_content_sets = repos.keys() - err = "Failed to find all the content_sets %r in the Pulp, " "found only %r" % ( + err = "Failed to find all the content_sets %r in Pulp, " "found only %r" % ( content_sets, found_content_sets, )