Skip to content

Commit 6af66e1

Browse files
fix
1 parent 4803fed commit 6af66e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exasol/toolbox/tools/security.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def from_json(report_str: str) -> Iterable[Issue]:
117117
description=issue["issue_text"],
118118
coordinates=issue["filename"].replace(
119119
str(PROJECT_CONFIG.root) + "/", ""
120-
) + f":{str(issue["line_number"])}:{str(issue["col_offset"])}:",
120+
) + ":" + str(issue["line_number"]) + ":" + str(issue["col_offset"]) + ":",
121121
references=tuple(references)
122122
)
123123

0 commit comments

Comments
 (0)