summaryrefslogtreecommitdiff
path: root/portato/backend/flags.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-08-11 11:13:50 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-08-11 11:13:50 +0200
commit4017dbceb245507e6479d3100fcda30f1bb7d99c (patch)
tree731fc7b4661e7203b4cd5a5502fe2b1cf2ce0af7 /portato/backend/flags.py
parentd93adb52cca624d132671d1c800c899ddce6a67b (diff)
parent2776b35a9a93d21a65ae005296f82e675336b0dc (diff)
downloadportato-4017dbceb245507e6479d3100fcda30f1bb7d99c.tar.gz
portato-4017dbceb245507e6479d3100fcda30f1bb7d99c.tar.bz2
portato-4017dbceb245507e6479d3100fcda30f1bb7d99c.zip
Some fixes from the 0.13 branch
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:]