]> git.saurik.com Git - apt.git/commitdiff
Also add 'in combination with the other options.' to another error
authorJulian Andres Klode <jak@debian.org>
Fri, 14 Aug 2015 20:30:41 +0000 (22:30 +0200)
committerJulian Andres Klode <jak@debian.org>
Fri, 14 Aug 2015 20:30:41 +0000 (22:30 +0200)
Gbp-Dch: ignore

apt-pkg/contrib/cmndline.cc

index 87255e9966db7214481d3aa22ac9a9b00808c50f..40365237e39dfce9f4445ebc01fa946458c7f652 100644 (file)
@@ -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;