diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-03-03 21:26:57 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-03-03 21:26:57 +0100 |
commit | 604bad93c0eecc031ac976cd8665f257c030d194 (patch) | |
tree | 027d5ed09878369971e1c30ce85a2a76eab97b40 /portato | |
parent | 31d1587997749451e61d4f3b0fd8607b73540226 (diff) | |
download | portato-604bad93c0eecc031ac976cd8665f257c030d194.tar.gz portato-604bad93c0eecc031ac976cd8665f257c030d194.tar.bz2 portato-604bad93c0eecc031ac976cd8665f257c030d194.zip |
Fix
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 baa1f37..0c3713d 100644 --- a/portato/backend/flags.py +++ b/portato/backend/flags.py @@ -411,7 +411,7 @@ def write_use_flags (): msg += "=%s %s" % (cpv, comb) else: # add on a per-package-base list = system.split_cpv(cpv) - msg += "%s/%s %s" % (list[0], list[1], combine) + msg += "%s/%s %s" % (list[0], list[1], comb) if not file in file_cache: with open(file, "a") as f: |