summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2010-03-23 13:32:21 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2010-03-23 13:32:21 +0100
commit3a08cfb10590d5cf5df1f45d94a424ef6a0f674b (patch)
tree762f4c22e41a15919bd900f163dbeaa0b22f686b
parent3069e43edca71776a4f9e5f5e7f53d473c397695 (diff)
downloadpython-apt-3a08cfb10590d5cf5df1f45d94a424ef6a0f674b.tar.gz
* apt/cache.py:
- make cache open silent by default (use apt.progress.base.OpProgress)
-rw-r--r--apt/cache.py2
-rw-r--r--debian/changelog5
2 files changed, 6 insertions, 1 deletions
diff --git a/apt/cache.py b/apt/cache.py
index 2e6d24e5..cfe6bedc 100644
--- a/apt/cache.py
+++ b/apt/cache.py
@@ -117,7 +117,7 @@ class Cache(object):
a dictionary
"""
if progress is None:
- progress = apt.progress.text.OpProgress()
+ progress = apt.progress.base.OpProgress()
self._run_callbacks("cache_pre_open")
self._cache = apt_pkg.Cache(progress)
diff --git a/debian/changelog b/debian/changelog
index b7617f90..2137aa69 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,15 @@
python-apt (0.7.94.3) UNRELEASED; urgency=low
+ [ Julian Andres Klode ]
* python/generic.cc:
- Fix a memory leak when using old attribute names.
* debian/control:
- Change priority to standard, keep -doc and -dev on optional.
+ [ Michael Vogt ]
+ * apt/cache.py:
+ - make cache open silent by default (use apt.progress.base.OpProgress)
+
-- Julian Andres Klode <jak@debian.org> Mon, 15 Mar 2010 17:04:49 +0100
python-apt (0.7.94.2) unstable; urgency=low