diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2012-03-28 10:19:51 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2012-03-28 10:19:51 +0200 |
| commit | 23d4a5fc9ca8dc7a35fd96a48dcb261ac0daf46b (patch) | |
| tree | 1e392c650edb96e0b0c730ff5daf74180f02ddc1 /apt | |
| parent | da171aa93337802c19d8caa99a4ab8516bdbc5bd (diff) | |
| download | python-apt-23d4a5fc9ca8dc7a35fd96a48dcb261ac0daf46b.tar.gz | |
* apt/cache.py:
- fix _have_multi_arch flag (thanks to Sebastian Heinlein)
Diffstat (limited to 'apt')
| -rw-r--r-- | apt/cache.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apt/cache.py b/apt/cache.py index 96b38a57..86a788bb 100644 --- a/apt/cache.py +++ b/apt/cache.py @@ -152,8 +152,7 @@ class Cache(object): self._sorted_set = None self._weakref.clear() - self._have_multi_arch = bool(apt_pkg.config.value_list("APT::" + - "Architectures")) + self._have_multi_arch = len(apt_pkg.get_architectures()) > 1 progress.op = _("Building data structures") i = last = 0 |
