# HG changeset patch # User Franz Glasner # Date 1522914143 -7200 # Node ID e84870359e1a3f5999153461c428a9c68a1e916c # Parent eee1dd1f99bf47712a631f9f93e62e829e0381d8 Enhance docu diff -r eee1dd1f99bf -r e84870359e1a configmix/json.py --- a/configmix/json.py Thu Apr 05 09:39:41 2018 +0200 +++ b/configmix/json.py Thu Apr 05 09:42:23 2018 +0200 @@ -55,5 +55,5 @@ decoder = json.decoder.JSONDecoder(**kwds) data = decoder.decode(jsfp.read()) if not isinstance(data, DictImpl): - raise TypeError("JSON root must be an object") + raise TypeError("JSON root must be an object (i.e. dict)") return data