(template_prefix, version)
| 19 | |
| 20 | |
| 21 | def compile_template_path(template_prefix, version): |
| 22 | |
| 23 | version_path = '#{0}#'.format(version) |
| 24 | |
| 25 | # Template path concatenation should be same as |
| 26 | # Ref: ../pgadmin4/web/pgadmin/utils/versioned_template_loader.py +54 |
| 27 | # to avoid path mismatch in windows |
| 28 | return template_prefix + '/' + version_path |
no outgoing calls
no test coverage detected