]> git.saurik.com Git - apt.git/commitdiff
* cmdline/apt-cache.cc:
authorMichael Vogt <michael.vogt@ubuntu.com>
Tue, 9 Sep 2008 19:26:40 +0000 (21:26 +0200)
committerMichael Vogt <michael.vogt@ubuntu.com>
Tue, 9 Sep 2008 19:26:40 +0000 (21:26 +0200)
  - remove the gettext from a string that consists entirely
    of variables (LP: #56792)

cmdline/apt-cache.cc
debian/changelog

index b16a0e5d0f8a6780207e6daa9b7c85e9f1031d58..11bc4fe032d1ed09a2bdf7db6df9126d3b4fc0a2 100644 (file)
@@ -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
index e79d37d04c9f0f9ecbacf44c3bc1dfed4fe34517..1e23129b42a15af9e05072cd02faac5a84c6e388 100644 (file)
@@ -35,6 +35,9 @@ apt (0.7.15) UNRELEASED; urgency=low
     - support having CDs with no Packages file (just a Packages.gz)
       by not forcing a verification on non-existing files
      (LP: #255545)
+  * cmdline/apt-cache.cc:
+    - remove the gettext from a string that consists entirely 
+      of variables (LP: #56792)
   
   [ Dereck Wonnacott ]
   * apt-ftparchive might write corrupt Release files (LP: #46439)