aboutsummaryrefslogtreecommitdiffstats
path: root/mako/runtime.py
diff options
context:
space:
mode:
Diffstat (limited to 'mako/runtime.py')
-rw-r--r--mako/runtime.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mako/runtime.py b/mako/runtime.py
index 5a83a81..9101af3 100644
--- a/mako/runtime.py
+++ b/mako/runtime.py
@@ -645,8 +645,8 @@ def capture(context, callable_, *args, **kwargs):
if not callable(callable_):
raise exceptions.RuntimeException(
- "capture() function expects a callable as "
- "its argument (i.e. capture(func, *args, **kwargs))"
+ "capture() function expects a callable as "
+ "its argument (i.e. capture(func, *args, **kwargs))"
)
context._push_buffer()
try: