diff options
| author | Brian Dolbec <brian.dolbec@gmail.com> | 2011-01-09 09:53:55 -0800 |
|---|---|---|
| committer | Brian Dolbec <brian.dolbec@gmail.com> | 2011-01-09 09:53:55 -0800 |
| commit | 982135632a1d6839a7b87f696069cf1faf958fc0 (patch) | |
| tree | 112d17682082e1de97436da3aa4badb7526f2528 | |
| parent | 011173cb22d6df31985c4239970b03bde00d1fcb (diff) | |
| download | gentoolkit-982135632a1d6839a7b87f696069cf1faf958fc0.tar.gz | |
remove the use of uniqify as it does not work correctly with atoms.
| -rw-r--r-- | pym/gentoolkit/dependencies.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/gentoolkit/dependencies.py b/pym/gentoolkit/dependencies.py index feced63..6dc6a76 100644 --- a/pym/gentoolkit/dependencies.py +++ b/pym/gentoolkit/dependencies.py @@ -243,7 +243,8 @@ class Dependencies(Query): try: all_depends = depcache[pkgdep] except KeyError: - all_depends = uniqify(pkgdep.get_all_depends()) + #all_depends = uniqify(pkgdep.get_all_depends()) + all_depends = pkgdep.get_all_depends() depcache[pkgdep] = all_depends dep_is_displayed = False |
