diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-08-11 11:13:50 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-08-11 11:13:50 +0200 |
commit | 4017dbceb245507e6479d3100fcda30f1bb7d99c (patch) | |
tree | 731fc7b4661e7203b4cd5a5502fe2b1cf2ce0af7 /portato/backend/flags.py | |
parent | d93adb52cca624d132671d1c800c899ddce6a67b (diff) | |
parent | 2776b35a9a93d21a65ae005296f82e675336b0dc (diff) | |
download | portato-4017dbceb245507e6479d3100fcda30f1bb7d99c.tar.gz portato-4017dbceb245507e6479d3100fcda30f1bb7d99c.tar.bz2 portato-4017dbceb245507e6479d3100fcda30f1bb7d99c.zip |
Some fixes from the 0.13 branch
Diffstat (limited to '')
-rw-r--r-- | portato/backend/flags.py | 2 |
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:] |