summaryrefslogtreecommitdiff
path: root/portato/backend/flags.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-08-11 11:06:21 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-08-11 11:06:21 +0200
commit2776b35a9a93d21a65ae005296f82e675336b0dc (patch)
tree731fc7b4661e7203b4cd5a5502fe2b1cf2ce0af7 /portato/backend/flags.py
parentbcfae28b842f76bfec2134f9d7f01942fc1c57c6 (diff)
downloadportato-2776b35a9a93d21a65ae005296f82e675336b0dc.tar.gz
portato-2776b35a9a93d21a65ae005296f82e675336b0dc.tar.bz2
portato-2776b35a9a93d21a65ae005296f82e675336b0dc.zip
Fix handling of slots in /etc/portage/*
Diffstat (limited to 'portato/backend/flags.py')
-rw-r--r--portato/backend/flags.py2
1 files changed, 1 insertions, 1 deletions
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:]