diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2010-03-23 13:32:21 +0100 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2010-03-23 13:32:21 +0100 |
| commit | 3a08cfb10590d5cf5df1f45d94a424ef6a0f674b (patch) | |
| tree | 762f4c22e41a15919bd900f163dbeaa0b22f686b /apt/cache.py | |
| parent | 3069e43edca71776a4f9e5f5e7f53d473c397695 (diff) | |
| download | python-apt-3a08cfb10590d5cf5df1f45d94a424ef6a0f674b.tar.gz | |
* apt/cache.py:
- make cache open silent by default (use apt.progress.base.OpProgress)
Diffstat (limited to 'apt/cache.py')
| -rw-r--r-- | apt/cache.py | 2 |
1 files changed, 1 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) |
