diff options
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: |