diff options
author | Nathaniel Case <this.is@nathanielca.se> | 2017-11-15 15:40:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-15 15:40:32 -0500 |
commit | 21c8ab537bf96893d0f6bff42efb754efb7083a7 (patch) | |
tree | d36cf220a0e9d5578b0bdd7e633f6cc94f3791bc /bin | |
parent | 3089892e59f9fa37b0c2ea4bcd871c7d1e1c8094 (diff) | |
download | ansible-21c8ab537bf96893d0f6bff42efb754efb7083a7.tar.gz |
getattr() with no default is an AttributeError if missing (#32946)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ansible-connection | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ansible-connection b/bin/ansible-connection index eed348f431..ced24ee47b 100755 --- a/bin/ansible-connection +++ b/bin/ansible-connection @@ -299,7 +299,7 @@ def main(): except Exception as exc: # Only network_cli has update_play context, so missing this is # not fatal e.g. netconf - if isinstance(exc, ConnectionError) and getattr(exc, 'code') == -32601: + if isinstance(exc, ConnectionError) and getattr(exc, 'code', None) == -32601: pass else: result.update({ |