From 2776b35a9a93d21a65ae005296f82e675336b0dc Mon Sep 17 00:00:00 2001 From: René 'Necoro' Neumann Date: Tue, 11 Aug 2009 11:06:21 +0200 Subject: Fix handling of slots in /etc/portage/* --- portato/backend/flags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'portato/backend/flags.py') diff --git a/portato/backend/flags.py b/portato/backend/flags.py index 51e5289..9c5b93d 100644 --- a/portato/backend/flags.py +++ b/portato/backend/flags.py @@ -115,7 +115,7 @@ def get_data(pkg, path): flags = [] for line in grep(pkg, path): - file, line, fl = line.split(":") # get file, line and flag-list + file, line, fl = line.split(":", 2) # get file, line and flag-list fl = fl.split() crit = fl[0] fl = fl[1:] -- cgit v1.2.3-54-g00ecf