summaryrefslogtreecommitdiffstats
path: root/base/deploy/src/scriptlets/pkimanifest.py
diff options
context:
space:
mode:
Diffstat (limited to 'base/deploy/src/scriptlets/pkimanifest.py')
-rw-r--r--base/deploy/src/scriptlets/pkimanifest.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/base/deploy/src/scriptlets/pkimanifest.py b/base/deploy/src/scriptlets/pkimanifest.py
index 04a638f06..6e2b9c367 100644
--- a/base/deploy/src/scriptlets/pkimanifest.py
+++ b/base/deploy/src/scriptlets/pkimanifest.py
@@ -27,6 +27,7 @@ import sys
# PKI Deployment Imports
import pkiconfig as config
+from pkiconfig import PKIConfig
import pkimessages as log
@@ -80,7 +81,7 @@ class file:
fd.close()
except IOError as exc:
config.pki_log.error(log.PKI_IOERROR_1, exc,
- extra=config.PKI_INDENTATION_LEVEL_1)
+ extra=PKIConfig.PKI_INDENTATION_LEVEL_1)
sys.exit(1)
def read(self):
@@ -92,7 +93,7 @@ class file:
fd.close()
except IOError as exc:
config.pki_log.error(log.PKI_IOERROR_1, exc,
- extra=config.PKI_INDENTATION_LEVEL_1)
+ extra=PKIConfig.PKI_INDENTATION_LEVEL_1)
sys.exit(1)