diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-01-26 15:40:59 +0000 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-01-26 15:40:59 +0000 |
| commit | b51b6bf42e6ccd487f902fe31685defa0bc6aedd (patch) | |
| tree | 2e4dca3551ff80ca3bcdf7c08b57bf0649b6e9ed /apt/cache.py | |
| parent | 940c6ecb9e7494414c4554fa4487cb5d17b5dadb (diff) | |
| download | python-apt-b51b6bf42e6ccd487f902fe31685defa0bc6aedd.tar.gz | |
* the pkgCache::VerIterator.DependsList[] dict does no longer depend on the localized depends name but on the english one
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 2821f287..fbca0f2a 100644 --- a/apt/cache.py +++ b/apt/cache.py @@ -203,7 +203,7 @@ class Cache(object): if res == pm.ResultCompleted: break if res == pm.ResultFailed: - raise SystemError, "install failed" + raise SystemError, "installArchives() failed" # reload the fetcher for media swaping fetcher.Shutdown() return (res == pm.ResultCompleted) |
