aboutsummaryrefslogtreecommitdiff
path: root/lib/chutney/Templating.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chutney/Templating.py')
-rw-r--r--lib/chutney/Templating.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/chutney/Templating.py b/lib/chutney/Templating.py
index 8141a85..ddcb850 100644
--- a/lib/chutney/Templating.py
+++ b/lib/chutney/Templating.py
@@ -114,6 +114,7 @@ class _DictWrapper(object):
on other values.
"""
try:
+ #print("calling self._getitem with " + key)
return self._getitem(key, my)
except KeyError:
pass
@@ -211,11 +212,11 @@ class Environ(_DictWrapper):
#print("self")
#print(dir(self))
fn = getattr(self, "_get_%s"%key, None)
- #print("function " + str(fn))
#if key == "dir":
# print("found dir " + self._get_dir(self))
if fn is not None:
try:
+ #print("calling function")
rv = fn(my)
return rv
except _KeyError: