Re: [apparmor] [patch] fix handling of adding to variables

2015-04-15 Thread Steve Beattie
On Wed, Apr 08, 2015 at 12:25:05AM +0200, Christian Boltz wrote: Hello, the LibreOffice profile uncovered that handling of @{var} += is broken: File .../utils/apparmor/aa.py, line 3272, in store_list_var var[list_var] = set(var[list_var] + vlist) TypeError: unsupported operand

[apparmor] [patch] fix handling of adding to variables

2015-04-07 Thread Christian Boltz
Hello, the LibreOffice profile uncovered that handling of @{var} += is broken: File .../utils/apparmor/aa.py, line 3272, in store_list_var var[list_var] = set(var[list_var] + vlist) TypeError: unsupported operand type(s) for +: 'set' and 'list' This patch fixes it: - change