summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2018-09-08 02:59:46 +0200
committerToshio Kuratomi <a.badger@gmail.com>2018-12-17 00:03:19 +0100
commit3fba0062078cc04eabb460ec1eb13a4739235199 (patch)
tree9c09103ce103a90f97ccf3736ca6c2502d7860f8 /bin
parentEnable the bare-except pylint and pep8 checking (diff)
downloadansible-3fba0062078cc04eabb460ec1eb13a4739235199.tar.xz
ansible-3fba0062078cc04eabb460ec1eb13a4739235199.zip
Update bare exceptions to specify Exception.
This will keep us from accidentally catching program-exiting exceptions like KeyboardInterupt and SystemExit.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ansible-connection2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ansible-connection b/bin/ansible-connection
index 59e15602bb..ce03429703 100755
--- a/bin/ansible-connection
+++ b/bin/ansible-connection
@@ -185,7 +185,7 @@ class ConnectionProcess(object):
self.sock.close()
if self.connection:
self.connection.close()
- except:
+ except Exception:
pass
finally:
if os.path.exists(self.socket_path):