summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2005-11-28 13:52:49 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2005-11-28 13:52:49 +0000
commitca8c79947fae5f77272e0912b74e13778192e4c1 (patch)
treed7d1ea3912eadc99d85e594564707fef983d0c97
parent311111a187216e25957c08e7c2e114b0118a48e2 (diff)
downloadpython-apt-ca8c79947fae5f77272e0912b74e13778192e4c1.tar.gz
* small tweaks, prepared next ubuntu upload
-rw-r--r--apt/cache.py2
-rw-r--r--debian/changelog11
2 files changed, 9 insertions, 4 deletions
diff --git a/apt/cache.py b/apt/cache.py
index 259d7b9d..5b95ec35 100644
--- a/apt/cache.py
+++ b/apt/cache.py
@@ -185,7 +185,7 @@ class Cache(object):
if res == pm.ResultFailed:
raise SystemError, "install failed"
- return res
+ return (res == pm.ResultCompleted)
# cache changes
def cachePostChange(self):
diff --git a/debian/changelog b/debian/changelog
index 1a4cb0a8..3d865f90 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,16 @@
-python-apt (0.6.15) unstable; urgency=low
+python-apt (0.6.14ubuntu2) dapper; urgency=low
+
+ * rewrote cache.Commit() and make it raise proper Exception if stuff
+ goes wrong
+
+ -- Michael Vogt <michael.vogt@ubuntu.com> Mon, 28 Nov 2005 14:48:01 +0100
+
+python-apt (0.6.14ubuntu1) dapper; urgency=low
* fix a invalid return from cache.commit(), fail if a download failed
* apt.Package.candidateOrigin returns a class now
* added pkgAcquire, pkgPackageManager and a example (acquire.py)
* tightend build-dependencies for new apt and the c++ transition
- * rewrote cache.Commit() and make it raise proper Exception if stuff
- goes wrong
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 17 Nov 2005 13:00:14 +0100