Fix bug where options may not have the force_handlers value from the cli

pull/11323/merge
James Cammarata 9 years ago
parent bbe8f48a46
commit b0e6baf8c3

@ -239,7 +239,7 @@ class ConnectionInformation:
# self.no_log = boolean(options.no_log)
if options.check:
self.check_mode = boolean(options.check)
if options.force_handlers:
if hasattr(options, 'force_handlers') and options.force_handlers:
self.force_handlers = boolean(options.force_handlers)
# get the tag info from options, converting a comma-separated list

Loading…
Cancel
Save