diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-01-01 19:15:15 +0100 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-01-01 19:15:15 +0100 |
commit | 24b9038634f87cede3f1d58b223282f7f7a6e3cd (patch) | |
tree | 03ad1eab2a6d26329f3e6e74d26e205f63cf90c3 /cmdline | |
parent | 739f45cd83e22d9f5713218f0cd5b0dedba5a4a5 (diff) |
remove translatable marker from the "%4i %s\n" string in apt-cache.cc
Diffstat (limited to 'cmdline')
-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 7d7f58a62..286f306cd 100644 --- a/cmdline/apt-cache.cc +++ b/cmdline/apt-cache.cc @@ -1620,7 +1620,7 @@ bool Policy(CommandLine &CmdL) if (SrcList->FindIndex(VF.File(),Indx) == false && _system->FindIndex(VF.File(),Indx) == false) return _error->Error(_("Cache is out of sync, can't x-ref a package file")); - printf(_(" %4i %s\n"),Plcy.GetPriority(VF.File()), + printf(" %4i %s\n",Plcy.GetPriority(VF.File()), Indx->Describe(true).c_str()); } } |