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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chutney/Templating.py b/lib/chutney/Templating.py
index eb8586f..3000512 100644
--- a/lib/chutney/Templating.py
+++ b/lib/chutney/Templating.py
@@ -27,7 +27,7 @@
... def __init__(self, p=None, **kw):
... Environ.__init__(self, p, **kw)
... self._n_calls = 0
-... def _get_expensive_value(self, me):
+... def _get_expensive_value(self, my):
... self._n_calls += 1
... return "Let's pretend this is hard to compute"
...