diff options
| author | fuzzyray <fuzzyray@gentoo.org> | 2009-12-09 18:54:19 +0000 |
|---|---|---|
| committer | fuzzyray <fuzzyray@gentoo.org> | 2009-12-09 18:54:19 +0000 |
| commit | d3037cab5d19104cea63dd51a9f7ec63433c8d32 (patch) | |
| tree | 380e0589e46a026d3e07001e63d5fe187f90f635 | |
| parent | 396e6ca7ef4a61a9b93b990be11fcddf3559abb9 (diff) | |
| download | gentoolkit-d3037cab5d19104cea63dd51a9f7ec63433c8d32.tar.gz | |
Fix equery meta to not remove the first package from the list of matching packages
svn path=/trunk/gentoolkit/; revision=706
| -rw-r--r-- | pym/gentoolkit/equery/meta.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/gentoolkit/equery/meta.py b/pym/gentoolkit/equery/meta.py index fc38bff..bcbbed2 100644 --- a/pym/gentoolkit/equery/meta.py +++ b/pym/gentoolkit/equery/meta.py @@ -358,7 +358,7 @@ def get_reference_pkg(matches): pkg = None while list(reversed(matches)): - pkg = matches.pop() + pkg = matches[-1] if not pkg.is_overlay(): break |
