summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2015-08-14 22:30:41 +0200
committerJulian Andres Klode <jak@debian.org>2015-08-14 22:30:41 +0200
commit71510743f4a5f6c26d7cfaccb720e3008475d8e8 (patch)
tree27cf66575187a8cd950c0194b2095e566a8cd660
parent0885c46f0c23f77e994eef51b772a171c3caf280 (diff)
Also add 'in combination with the other options.' to another error
Gbp-Dch: ignore
-rw-r--r--apt-pkg/contrib/cmndline.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/cmndline.cc b/apt-pkg/contrib/cmndline.cc
index 87255e996..40365237e 100644
--- a/apt-pkg/contrib/cmndline.cc
+++ b/apt-pkg/contrib/cmndline.cc
@@ -124,7 +124,7 @@ bool CommandLine::Parse(int argc,const char **argv)
Args *A;
for (A = ArgList; A->end() == false && A->ShortOpt != *Opt; A++);
if (A->end() == true)
- return _error->Error(_("Command line option '%c' [from %s] is not known."),*Opt,argv[I]);
+ return _error->Error(_("Command line option '%c' [from %s] is not understood in combination with the other options."),*Opt,argv[I]);
if (HandleOpt(I,argc,argv,Opt,A) == false)
return false;