diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2008-09-09 21:26:40 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2008-09-09 21:26:40 +0200 |
commit | 78acd6505b8c08f47dd44911b567df31d07aa78d (patch) | |
tree | 2157faaef308cf43b6bf7c4f78e4f7d8da3979e7 /cmdline/apt-cache.cc | |
parent | 8d357c5290f737e0f47f1ad62b1256586aade860 (diff) |
* cmdline/apt-cache.cc:
- remove the gettext from a string that consists entirely
of variables (LP: #56792)
Diffstat (limited to 'cmdline/apt-cache.cc')
-rw-r--r-- | cmdline/apt-cache.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc index b16a0e5d0..11bc4fe03 100644 --- a/cmdline/apt-cache.cc +++ b/cmdline/apt-cache.cc @@ -1533,7 +1533,8 @@ bool Policy(CommandLine &CmdL) if (SrcList->FindIndex(F,Indx) == false && _system->FindIndex(F,Indx) == false) return _error->Error(_("Cache is out of sync, can't x-ref a package file")); - printf(_("%4i %s\n"), + + printf("%4i %s\n", Plcy.GetPriority(F),Indx->Describe(true).c_str()); // Print the reference information for the package |