Skip to content

Commit

Permalink
Fix space
Browse files Browse the repository at this point in the history
  • Loading branch information
testaccount90009 committed Dec 10, 2024
1 parent 99323d6 commit 34d8364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dojo/tools/mend/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def _build_common_output(node, lib_name=None):
if locations and len(", ".join(locations)) > 3999:
locations = [loc[:3999] for loc in locations]
locations = ", ".join(locations)[:3999]
steps_to_reproduce= ", ".join(locations) if locations is not None else None
steps_to_reproduce = ", ".join(locations) if locations is not None else None

filepaths = filepaths

Expand Down

0 comments on commit 34d8364

Please sign in to comment.