test-my-pr: fix syntax error

This commit is contained in:
Daniel Marjamäki 2022-09-05 20:55:55 +02:00
parent cf334100b6
commit 251de269ec
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ if __name__ == "__main__":
myfile.write(package + '\n')
diff = lib.diff_results('main', results_to_diff[0], 'your', results_to_diff[1])
if not main_crashed and not your_crashed and diff != '':
myfile.write('libraries:' + libraries +'\n')
myfile.write('libraries:' + ','.join(libraries) +'\n')
myfile.write('diff:\n' + diff + '\n')
if not main_crashed and not your_crashed: