diff --git a/clay584/genie/clay584-genie-0.1.7.tar.gz b/clay584/genie/clay584-genie-0.1.7.tar.gz deleted file mode 100644 index 5efc668..0000000 Binary files a/clay584/genie/clay584-genie-0.1.7.tar.gz and /dev/null differ diff --git a/clay584/genie/galaxy.yml b/clay584/genie/galaxy.yml index bed30a9..a09a284 100644 --- a/clay584/genie/galaxy.yml +++ b/clay584/genie/galaxy.yml @@ -9,7 +9,7 @@ namespace: clay584 name: genie # The version of the collection. Must be compatible with semantic versioning -version: 0.1.11 +version: 0.1.12 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/clay584/genie/plugins/modules/learn_genie.py b/clay584/genie/plugins/modules/learn_genie.py index 7a0160a..9a09f71 100644 --- a/clay584/genie/plugins/modules/learn_genie.py +++ b/clay584/genie/plugins/modules/learn_genie.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright: (c) 2020, Clay Curtis +# Copyright: (c) 2023, Clay Curtis # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) ANSIBLE_METADATA = { @@ -253,7 +253,7 @@ def run_module(): this_class = getattr(this_module, package_name) this_excludes = this_class.exclude default_excludes.update({i: this_excludes}) - except AttributeError: + except (AttributeError, ModuleNotFoundError): default_excludes.update({i: []}) # this_module = __import__(modulename)