Fix JSONDecodeError

Fix #814
This commit is contained in:
Julien Duponchelle
2016-12-12 10:03:40 +01:00
parent 508edf5cc5
commit 4bb990bf0c
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ def load_topology(path):
try:
with open(path, encoding="utf-8") as f:
topo = json.load(f)
except (OSError, UnicodeDecodeError, json.JSONDecodeError) as e:
except (OSError, UnicodeDecodeError, json.decoder.JSONDecodeError) as e:
raise aiohttp.web.HTTPConflict(text="Could not load topology {}: {}".format(path, str(e)))
if "revision" not in topo or topo["revision"] < 5:
# If it's an old GNS3 file we need to convert it