summaryrefslogtreecommitdiff
path: root/apt-pkg/acquire-item.cc
diff options
context:
space:
mode:
authorM. Willis Monroe <willismonroe@gmail.com>2017-06-22 09:48:18 -0700
committerGitHub <noreply@github.com>2017-06-22 09:48:18 -0700
commit170e9dea389cc9f0020b619976b51550cb0039ca (patch)
tree7d2dafb52d8f8ad9fc5c83cef3b28b9be6992df1 /apt-pkg/acquire-item.cc
parent1c562dbf59430283953c18ab896acaa5c67fd16b (diff)
Minor grammar fix
Modified the wording of an error message when a repository no longer has a release file.
Diffstat (limited to 'apt-pkg/acquire-item.cc')
-rw-r--r--apt-pkg/acquire-item.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc
index 3c85f8adf..a7386da71 100644
--- a/apt-pkg/acquire-item.cc
+++ b/apt-pkg/acquire-item.cc
@@ -232,7 +232,7 @@ static bool APT_NONNULL(3, 4, 5) AllowInsecureRepositories(InsecureType const ms
switch (msg)
{
case InsecureType::UNSIGNED: msgstr = _("The repository '%s' is no longer signed."); break;
- case InsecureType::NORELEASE: msgstr = _("The repository '%s' does no longer have a Release file."); break;
+ case InsecureType::NORELEASE: msgstr = _("The repository '%s' no longer has a Release file."); break;
case InsecureType::WEAK: /* unreachable */ break;
}
if (_config->FindB("Acquire::AllowDowngradeToInsecureRepositories") ||