summaryrefslogtreecommitdiff
path: root/python/tar.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2005-03-02 10:21:47 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2005-03-02 10:21:47 +0000
commitc0b6c9e6812970ac952593abf3d6b4d810b06c9d (patch)
tree3b5c1ba69dd5b714e29d8eb4fd59fda033758b39 /python/tar.cc
parent5a4c9edb5772d54a68ca043f4b4ebd85a871bd5d (diff)
downloadpython-apt-c0b6c9e6812970ac952593abf3d6b4d810b06c9d.tar.gz
* merged with matts tree, resolved lots of conflicts
Patches applied: * apt@packages.debian.org/python-apt--main--0--base-0 tag of apt@arch.ubuntu.com/python-apt--MAIN--0--patch-44 * apt@packages.debian.org/python-apt--main--0--patch-1 Merge michael.vogt@ubuntu.com--2005/python-apt--pkgDepCache--0 * apt@packages.debian.org/python-apt--main--0--patch-2 0.5.33 * apt@packages.debian.org/python-apt--main--0--patch-3 Add arch-build target to rules * apt@packages.debian.org/python-apt--main--0--patch-4 Fix typo (fund->find) * apt@packages.debian.org/python-apt--main--0--patch-5 Restore Ubuntu changes * apt@packages.debian.org/python-apt--main--0--patch-6 0.5.35 -> hoary * apt@packages.debian.org/python-apt--main--0--patch-7 Fix build-depends, somehow lost in merge * michael.vogt@ubuntu.com--2005/python-apt--pkgDepCache--0--base-0 tag of apt@arch.ubuntu.com/python-apt--MAIN--0--patch-44 * michael.vogt@ubuntu.com--2005/python-apt--pkgDepCache--0--patch-1 * merged from my mvo tree, removed all non-pkgDepCache releated stuff and cleaned up the code * michael.vogt@ubuntu.com--2005/python-apt--pkgDepCache--0--patch-2 * beefed up the example code, added DepCache.Upgrade() * michael.vogt@ubuntu.com--2005/python-apt--pkgDepCache--0--patch-3 * implemented the marking interface * michael.vogt@ubuntu.com--2005/python-apt--pkgDepCache--0--patch-4 * state information and marking interface * michael.vogt@ubuntu.com--2005/python-apt--pkgDepCache--0--patch-5 * fixed wrong types for "UsrSize" and "DebSize" * michael.vogt@ubuntu.com--2005/python-apt--pkgDepCache--0--patch-6 * added DepCache.FixBroken() * michael.vogt@ubuntu.com--2005/python-apt--pkgDepCache--0--patch-7 * example code how a overview about the changes can be computed
Diffstat (limited to 'python/tar.cc')
-rw-r--r--python/tar.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tar.cc b/python/tar.cc
index 38844a75..20fb1f5f 100644
--- a/python/tar.cc
+++ b/python/tar.cc
@@ -161,7 +161,7 @@ PyObject *debExtract(PyObject *Self,PyObject *Args)
const ARArchive::Member *Member = Deb.GotoMember(Chunk);
if (Member == 0)
{
- _error->Error("Cannot fund chunk %s",Chunk);
+ _error->Error("Cannot find chunk %s",Chunk);
return HandleErrors();
}