[apparmor] [patch] move strip_quotes from aa.py to regex.py

2015-03-02 Thread Christian Boltz
Hello, the upcoming function parse_profile_start() (which is a wrapper around the updated RE_PROFILE_START, and will live in regex.py) needs strip_profile(), but importing it from aa.py fails with an import loop. Therefore this patch moves strip_quotes() from aa.py to regex.py and re-imports it

Re: [apparmor] [patch] move strip_quotes from aa.py to regex.py

2015-03-03 Thread Steve Beattie
On Tue, Mar 03, 2015 at 12:58:49AM +0100, Christian Boltz wrote: > Hello, > > the upcoming function parse_profile_start() (which is a wrapper around > the updated RE_PROFILE_START, and will live in regex.py) needs > strip_profile(), but importing it from aa.py fails with an import loop. > Theref