mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-10 02:41:30 +00:00
cloudtrail: import botocore.exceptions in a try/except.
This commit is contained in:
committed by
Toshio Kuratomi
parent
075ead8fb0
commit
6ae201d3b1
@@ -245,7 +245,11 @@ trail:
|
||||
|
||||
import traceback
|
||||
|
||||
from botocore.exceptions import ClientError
|
||||
try:
|
||||
from botocore.exceptions import ClientError
|
||||
except ImportError:
|
||||
# Handled in main() by imported HAS_BOTO3
|
||||
pass
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.ec2 import (boto3_conn, ec2_argument_spec, get_aws_connection_info,
|
||||
|
||||
Reference in New Issue
Block a user