From 997d74b44ab2808c493459054d0a636cfc26cd0b Mon Sep 17 00:00:00 2001 From: fuzzyray Date: Tue, 22 Jul 2008 18:29:31 +0000 Subject: Fix gentoolkit.split_package_name to work with newer portage.catpkgsplit that now returns a tuple instead of a list. (Bug 232599) svn path=/; revision=501 --- trunk/src/gentoolkit/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'trunk/src') diff --git a/trunk/src/gentoolkit/helpers.py b/trunk/src/gentoolkit/helpers.py index 2680fef..595bee3 100644 --- a/trunk/src/gentoolkit/helpers.py +++ b/trunk/src/gentoolkit/helpers.py @@ -130,7 +130,7 @@ def split_package_name(name): """Returns a list on the form [category, name, version, revision]. Revision will be 'r0' if none can be inferred. Category and version will be empty, if none can be inferred.""" - r = portage.catpkgsplit(name) + r = list(portage.catpkgsplit(name)) if not r: r = name.split("/") if len(r) == 1: -- cgit v1.2.3