From c738d0788e6fb54252c035d20e68fc3238484355 Mon Sep 17 00:00:00 2001 From: Artsiom Musin Date: Wed, 14 Jun 2023 21:41:06 +0200 Subject: [PATCH] Check for a list of all option instead of string (#14046) --- awx_collection/plugins/modules/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx_collection/plugins/modules/export.py b/awx_collection/plugins/modules/export.py index 871c89d90e..9837cd9e51 100644 --- a/awx_collection/plugins/modules/export.py +++ b/awx_collection/plugins/modules/export.py @@ -154,7 +154,7 @@ def main(): # The exporter code currently works like the following: # Empty string == all assets of that type - # Non-Empty string = just one asset of that type (by name or ID) + # Non-Empty string = just a list of assets of that type (by name or ID) # Asset type not present or None = skip asset type (unless everything is None, then export all) # Here we are going to setup a dict of values to export export_args = {}