diff --git a/MDmisc/edict.py b/MDmisc/edict.py index 5784cec88e117c0c10169e5aa804073b7287b356..96c8eb0bca065b166beb20b6ec20d5f661423923 100644 --- a/MDmisc/edict.py +++ b/MDmisc/edict.py @@ -37,6 +37,10 @@ class edict( dict ): if key in tmp.keys(): tmp = tmp.get( key ) else: - raise KeyError( "'%s' key not found" % key ) + error = "'%s' key not found" % key + if len( path ) > 1: + error += " (searching for: %s)" % split.join( path ) + + raise KeyError( error ) return tmp