| Conditions | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | # -*- coding: utf-8 -*- |
||
| 20 | def __call__(self, environ, context): |
||
| 21 | """Invoke the Controller""" |
||
| 22 | # TGController.__call__ dispatches to the Controller method |
||
| 23 | # the request is routed to. |
||
| 24 | |||
| 25 | tmpl_context.identity = request.identity |
||
| 26 | |||
| 27 | return TGController.__call__(self, environ, context) |
||
| 28 |