From a4ff4cb2678e12808ad5b16a6f9719ad7b1f6147 Mon Sep 17 00:00:00 2001 From: Marco De Donno Date: Wed, 28 Jun 2017 14:10:37 +0200 Subject: [PATCH] Add the full path in the get_r() function if the particular key is not found --- MDmisc/edict.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/MDmisc/edict.py b/MDmisc/edict.py index 5784cec..96c8eb0 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 -- GitLab