Commit 269f12ce by Chris Jerdonek

6 more tests passing: call lambdas.

Now at--

    Ran 159 tests in 0.502s
    FAILED (failures=12)
parent 70a105b3
......@@ -24,6 +24,9 @@ def call(val, view, template=None):
else:
val = val(view, template)
if callable(val):
val = val(template)
if val is None:
val = ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment