From: Brian Dolbec Date: Sun, 9 Jan 2011 17:53:55 +0000 (-0800) Subject: remove the use of uniqify as it does not work correctly with atoms. X-Git-Tag: gentoolkit-0.3.0~30 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=982135632a1d6839a7b87f696069cf1faf958fc0;p=gentoolkit.git remove the use of uniqify as it does not work correctly with atoms. --- 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