diff options
author | Toshio Kuratomi <a.badger@gmail.com> | 2018-09-08 02:59:46 +0200 |
---|---|---|
committer | Toshio Kuratomi <a.badger@gmail.com> | 2018-12-17 00:03:19 +0100 |
commit | 3fba0062078cc04eabb460ec1eb13a4739235199 (patch) | |
tree | 9c09103ce103a90f97ccf3736ca6c2502d7860f8 /bin | |
parent | Enable the bare-except pylint and pep8 checking (diff) | |
download | ansible-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-x | bin/ansible-connection | 2 |
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): |