diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-03-03 23:53:52 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-03-03 23:53:52 +0100 |
commit | 4c786bef98d6d8244a1c6e28abc5dd448902ecdf (patch) | |
tree | af67e8eeb5bd3ae257b1f6e87997b0090082d3c5 /portato/backend/flags.py | |
parent | c768119cc7ade2018f7ab0ae0da0515bee36de60 (diff) | |
parent | 6a6aba15ba92c805fe35da7dcbdaa37bacccb6fd (diff) | |
download | portato-4c786bef98d6d8244a1c6e28abc5dd448902ecdf.tar.gz portato-4c786bef98d6d8244a1c6e28abc5dd448902ecdf.tar.bz2 portato-4c786bef98d6d8244a1c6e28abc5dd448902ecdf.zip |
Some more 0.12 stuff
Diffstat (limited to 'portato/backend/flags.py')
-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: |