-
-
Notifications
You must be signed in to change notification settings - Fork 69
Closed
Labels
Milestone
Description
Migrated issue, originally created by Michael Bayer (@zzzeek)
i.e.:
# TEMPLATE "test.tmpl"
<%inherit file="base.tmpl" />
<%page args="variable" />
${variable}
# TEMPLATE "base.tmpl"
<%page args="bar" />
${bar}
${pageargs['foo']}
a proposed fix is:
def _kwargs_for_callable(callable_, data, **kwargs):
data.update(kwargs)
if 'context' in data:
del data['context']
return data
though I'd like to see if this can be addressed in a more fundamental way.
Reactions are currently unavailable