Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
markcmiller86 committed Jul 1, 2024
1 parent fbdb9bd commit 55beebc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/LinkChecker/cklcresults.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,6 @@ def AppendLineToPreviousKey(cr, key, line):
with open(bad_links_out, 'w') as file:
for rec in bad_links:
if ghEvent == 'pull_request':
file.write(+str(rec['ParentURL'][41:]+', '+str(rec['URL']+'\n')
file.write(+str(rec['ParentURL'][41:])+', '+str(rec['URL'])+'\n')
else:
file.write(str(rec)+'\n')

0 comments on commit 55beebc

Please sign in to comment.