(name, from_template)
| 84 | |
| 85 | |
| 86 | def get_file_template(name, from_template): |
| 87 | path = os.path.join(os.path.dirname(from_template.name), name) |
| 88 | return from_template.__class__.from_filename( |
| 89 | path, namespace=from_template.namespace, |
| 90 | get_template=from_template.get_template) |
| 91 | |
| 92 | |
| 93 | class Template: |
nothing calls this directly
no test coverage detected