summaryrefslogtreecommitdiff
path: root/test/legacy/consul_running.py
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2018-09-07 17:59:46 -0700
committerToshio Kuratomi <a.badger@gmail.com>2018-12-16 15:03:19 -0800
commit3fba0062078cc04eabb460ec1eb13a4739235199 (patch)
tree9c09103ce103a90f97ccf3736ca6c2502d7860f8 /test/legacy/consul_running.py
parent5147e792d398258a5a87c3271ea89c1c4fd2f4d3 (diff)
downloadansible-3fba0062078cc04eabb460ec1eb13a4739235199.tar.gz
Update bare exceptions to specify Exception.
This will keep us from accidentally catching program-exiting exceptions like KeyboardInterupt and SystemExit.
Diffstat (limited to 'test/legacy/consul_running.py')
-rw-r--r--test/legacy/consul_running.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/legacy/consul_running.py b/test/legacy/consul_running.py
index f64aaeecc3..0772cd4046 100644
--- a/test/legacy/consul_running.py
+++ b/test/legacy/consul_running.py
@@ -7,5 +7,5 @@ if __name__ == '__main__':
consul = consul.Consul(host='0.0.0.0', port=8500)
consul.catalog.nodes()
print("True")
- except:
+ except Exception:
pass