(de_inst)
| 1548 | |
| 1549 | |
| 1550 | def get_debugger_template_path(de_inst): |
| 1551 | # find the debugger version and execute the query accordingly |
| 1552 | dbg_version = de_inst.debugger_data['debugger_version'] |
| 1553 | if dbg_version <= 2: |
| 1554 | template_path = DEBUGGER_SQL_V1_PATH |
| 1555 | else: |
| 1556 | template_path = DEBUGGER_SQL_V3_PATH |
| 1557 | |
| 1558 | return template_path |
| 1559 | |
| 1560 | |
| 1561 | @blueprint.route( |
no outgoing calls
no test coverage detected