From f63f08d79a377e9bbddd63c8de833b342a7efa58 Mon Sep 17 00:00:00 2001 From: Kshitij Gupta Date: Mon, 8 Sep 2014 18:01:18 +0530 Subject: [PATCH] Fix incorrect options being displayed for capabilites in aa.py The following patch: - ensures the options are passed correctly in the expected form. Acked-by: Christian Boltz --- utils/apparmor/aa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/apparmor/aa.py b/utils/apparmor/aa.py index 80aeccf33..1d24b21bb 100644 --- a/utils/apparmor/aa.py +++ b/utils/apparmor/aa.py @@ -1556,7 +1556,7 @@ def ask_the_questions(): if options: options.append('capability %s' % capability) - q['options'] = [options] + q['options'] = options q['selected'] = default_option - 1 q['headers'] = [_('Profile'), combine_name(profile, hat)]