summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Reports/nisauth.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Server/Reports/nisauth.py')
-rw-r--r--src/lib/Bcfg2/Server/Reports/nisauth.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/Bcfg2/Server/Reports/nisauth.py b/src/lib/Bcfg2/Server/Reports/nisauth.py
index b3e37113b..dd1f2f742 100644
--- a/src/lib/Bcfg2/Server/Reports/nisauth.py
+++ b/src/lib/Bcfg2/Server/Reports/nisauth.py
@@ -1,8 +1,8 @@
+"""Checks with NIS to see if the current user is in the support group"""
+
import crypt
import nis
-from Bcfg2.Server.Reports.settings import AUTHORIZED_GROUP
-
-"""Checks with NIS to see if the current user is in the support group"""
+from Bcfg2.settings import AUTHORIZED_GROUP # pylint: disable=E0611
class NISAUTHError(Exception):