(self)
| 366 | raise TemplateNotFound(name) |
| 367 | |
| 368 | def list_templates(self): |
| 369 | result = [] |
| 370 | for prefix, loader in iteritems(self.mapping): |
| 371 | for template in loader.list_templates(): |
| 372 | result.append(prefix + self.delimiter + template) |
| 373 | return result |
| 374 | |
| 375 | |
| 376 | class ChoiceLoader(BaseLoader): |
nothing calls this directly
no test coverage detected