summaryrefslogtreecommitdiff
path: root/cloudinit/analyze/show.py
diff options
context:
space:
mode:
authorAndrew Jorgensen <ajorgens@amazon.com>2017-08-25 22:17:34 +0000
committerScott Moser <smoser@ubuntu.com>2017-08-25 16:24:53 -0700
commit0ab9859168eb0ba4fc348843e866751cfc67181f (patch)
treefd342edc33a9ee908e6ca273c8dc14332ec90226 /cloudinit/analyze/show.py
parent556a0220734097aa4e9fbfd93c8f263684232b3b (diff)
downloadvyos-cloud-init-0ab9859168eb0ba4fc348843e866751cfc67181f.tar.gz
vyos-cloud-init-0ab9859168eb0ba4fc348843e866751cfc67181f.zip
cloud-init analyze: fix issues running under python 2.
Some Python 3 exception names crept into the cloud-init analyze code. This patches those back out at a cost of catching less specific parents of the desired exceptions.
Diffstat (limited to 'cloudinit/analyze/show.py')
-rw-r--r--cloudinit/analyze/show.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/analyze/show.py b/cloudinit/analyze/show.py
index 3b356bb8..3e778b8b 100644
--- a/cloudinit/analyze/show.py
+++ b/cloudinit/analyze/show.py
@@ -201,7 +201,7 @@ def load_events(infile, rawdata=None):
j = None
try:
j = json.loads(data)
- except json.JSONDecodeError:
+ except ValueError:
pass
return j, data