From 10e12a55d71037b6ba98af12e598dd00e378f19d Mon Sep 17 00:00:00 2001 From: Yousefnezhad Date: Wed, 11 Jun 2025 11:59:54 +0330 Subject: [PATCH] Blank Error --- plugins/modules/nfs_exports_info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/nfs_exports_info.py b/plugins/modules/nfs_exports_info.py index f557989ab3..c88a043f1a 100644 --- a/plugins/modules/nfs_exports_info.py +++ b/plugins/modules/nfs_exports_info.py @@ -59,7 +59,7 @@ from ansible.module_utils.basic import AnsibleModule import re -def get_exports(module, output_format, file_path="/etc/exports"): +def get_exports(module, output_format, file_path="/etc/exports"): IP_ENTRY_PATTERN = re.compile(r'(\d+\.\d+\.\d+\.\d+)\(([^)]+)\)') try: exports_file_digest = module.digest_from_file(file_path, 'sha1') @@ -130,4 +130,4 @@ def main(): ) if __name__ == '__main__': main() -__all__ = ['get_exports'] \ No newline at end of file +__all__ = ['get_exports']