diff --git a/core/src/main/python/wlsdeploy/tool/util/library_helper.py b/core/src/main/python/wlsdeploy/tool/util/library_helper.py index 8427147357..5f670a7895 100644 --- a/core/src/main/python/wlsdeploy/tool/util/library_helper.py +++ b/core/src/main/python/wlsdeploy/tool/util/library_helper.py @@ -26,6 +26,7 @@ def __init__(self, model, model_context, aliases, domain_home, exception_type, l self.alias_helper = AliasHelper(aliases, self.logger, exception_type) self.wlst_helper = WlstHelper(self.logger, exception_type) + self.archive_helper = None archive_file_name = self.model_context.get_archive_file_name() if archive_file_name is not None: self.archive_helper = ArchiveHelper(archive_file_name, self.domain_home, self.logger, exception_type)