summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pystache/context.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pystache/context.py b/pystache/context.py
index 2ebf549..139806d 100644
--- a/pystache/context.py
+++ b/pystache/context.py
@@ -48,7 +48,10 @@ def _get_value(item, key):
# are considered objects by the test above.
if hasattr(item, key):
attr = getattr(item, key)
- if _is_callable(attr):
+ # If there are still parts to process (in a dot-notation key),
+ # we do not automatically invoke the object, even if it's callable.
+ autocall = len(parts) > 1
+ if autocall and _is_callable(attr):
value = attr()
else:
value = attr