From 1e437a3cd82cbdfcd8c40ee49ef9b4f894eb2e08 Mon Sep 17 00:00:00 2001 From: Steve Beattie Date: Wed, 8 Oct 2014 11:05:01 -0700 Subject: [PATCH] utils: fix missed conversion in move to more class based approach Signed-off-by: Steve Beattie Acked-by: Kshitij Gupta --- utils/apparmor/ui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/apparmor/ui.py b/utils/apparmor/ui.py index 844e7170a..a1445915d 100644 --- a/utils/apparmor/ui.py +++ b/utils/apparmor/ui.py @@ -303,8 +303,8 @@ class PromptQuestion(object): if UI_mode == 'text': cmd, arg = self.Text_PromptUser() else: - q.type = 'wizard' - SendDataToYast(q) + self.type = 'wizard' + SendDataToYast(self) ypath, yarg = GetDataFromYast() if not cmd: cmd = 'CMD_ABORT'