summaryrefslogtreecommitdiff
path: root/cmdline/apt-cache.cc
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2010-01-01 19:15:15 +0100
committerDavid Kalnischkies <kalnischkies@gmail.com>2010-01-01 19:15:15 +0100
commit24b9038634f87cede3f1d58b223282f7f7a6e3cd (patch)
tree03ad1eab2a6d26329f3e6e74d26e205f63cf90c3 /cmdline/apt-cache.cc
parent739f45cd83e22d9f5713218f0cd5b0dedba5a4a5 (diff)
remove translatable marker from the "%4i %s\n" string in apt-cache.cc
Diffstat (limited to 'cmdline/apt-cache.cc')
-rw-r--r--cmdline/apt-cache.cc2
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());
}
}