Skip to content

Commit cf5764f

Browse files
committed
fix quotes
1 parent 1cd3039 commit cf5764f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zap/src/scan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ def hail_compliance_export(results_json, project_name):
451451
else:
452452
results[key] = result_line
453453
results[key][1] = str(result.get('id'))
454-
results[key][6] = results[key][6] + f", \n{result.get("location").get("path").get("path")}"
454+
results[key][6] = f"{results[key][6]}, \n{result.get('location').get('path').get('path')}"
455455

456456
report_date = datetime.now()
457457
report_name = f'{project_name.replace("-", "_")}_report_{report_date:%Y%m%d}.csv'

0 commit comments

Comments
 (0)