diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2019-01-10 10:30:36 +0100 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2019-01-10 10:38:54 +0100 |
commit | 29626ddaf19284855ba3244cff28612cbc1e2b84 (patch) | |
tree | d1a268ef2c402ae7d29da2292e146c3856d65b56 /cmdline/apt-cache.cc | |
parent | b78d18378213292691b5132975086d9e80973a81 (diff) |
Generalize %s does not take any arguments
This used to be "apt-cache stats does not take any arguments", but
replace "apt-cache stats" with "%s" so we can reuse it for other
commands.
Gbp-Dch: ignore
Diffstat (limited to 'cmdline/apt-cache.cc')
-rw-r--r-- | cmdline/apt-cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc index f1b1e144d..3c0e477b1 100644 --- a/cmdline/apt-cache.cc +++ b/cmdline/apt-cache.cc @@ -182,7 +182,7 @@ static void ShowHashTableStats(std::string Type, static bool Stats(CommandLine &CmdL) { if (CmdL.FileSize() > 1) { - _error->Error(_("apt-cache stats does not take any arguments")); + _error->Error(_("%s does not take any arguments"), "apt-cache stats"); return false; } |