diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-08-21 17:08:27 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-08-21 17:08:27 +0200 |
| commit | 8600d4c44a5b9f75887da6e12acea622caef8c76 (patch) | |
| tree | 791a320b756538befb15a0bc9269bfcbf26e2d57 /apt | |
| parent | dea3fad6d30e85f184d34e80490ad24ac89a9438 (diff) | |
| parent | 353d2494c234d87cb63affd07a927d1030fa9721 (diff) | |
| download | python-apt-8600d4c44a5b9f75887da6e12acea622caef8c76.tar.gz | |
Merge 0.7.13.1 from unstable.
Diffstat (limited to 'apt')
| -rw-r--r-- | apt/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt/package.py b/apt/package.py index 8c9770e9..3b5cfccf 100644 --- a/apt/package.py +++ b/apt/package.py @@ -383,7 +383,7 @@ class Version(object): """Return a list of Dependency objects for the given types.""" depends_list = [] depends = self._cand.depends_list - for type_ in ["PreDepends", "Depends"]: + for type_ in types: try: for dep_ver_list in depends[type_]: base_deps = [] |
