From d448a638796088f2f258b3ddde15d547ade7bff8 Mon Sep 17 00:00:00 2001 From: Yousefnezhad Date: Sun, 15 Jun 2025 09:12:46 +0330 Subject: [PATCH] Space Error --- plugins/modules/nfs_exports_info.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/modules/nfs_exports_info.py b/plugins/modules/nfs_exports_info.py index b15cf4ec08..eb20bc17cc 100644 --- a/plugins/modules/nfs_exports_info.py +++ b/plugins/modules/nfs_exports_info.py @@ -70,10 +70,9 @@ import hashlib def get_exports(module, output_format, file_path="/etc/exports"): - IP_ENTRY_PATTERN = re.compile(r'(\d+\.\d+\.\d+\.\d+)\(([^)]+)\)') MAIN_LINE_PATTERN = re.compile(r'\s*(\S+)\s+(.+)') - + file_digests = {} hash_algorithms = ['sha256', 'sha1', 'md5']