From bcd20d761a6efdcec7aa7effd6cc7efcb95f7bd0 Mon Sep 17 00:00:00 2001 From: Chris PeBenito Date: Tue, 16 Dec 2014 13:04:10 -0500 Subject: [PATCH] Python3 fix for default.py --- setools/policyrep/default.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setools/policyrep/default.py b/setools/policyrep/default.py index 0851d3b..67a9baf 100644 --- a/setools/policyrep/default.py +++ b/setools/policyrep/default.py @@ -16,9 +16,9 @@ # License along with SETools. If not, see # . # -import symbol -import objclass -import qpol +from . import symbol +from . import objclass +from . import qpol class NoDefaults(symbol.InvalidSymbol):