mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-08-25 03:27:15 +00:00
7 lines
120 B
Python
7 lines
120 B
Python
|
import sys
|
||
|
|
||
|
if sys.version_info[0] >= 3:
|
||
|
from LibAppArmor.LibAppArmor import *
|
||
|
else:
|
||
|
from .LibAppArmor import *
|