Skip to content

Commit

Permalink
Merge pull request #86 from CybercentreCanada/bugfix/list-of-dict-marks
Browse files Browse the repository at this point in the history
Bugfix/list of dict marks
  • Loading branch information
cccs-kevin authored Sep 2, 2022
2 parents 97f9593 + 3af691c commit be83cd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cape/cape_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -1382,7 +1382,7 @@ def _create_signature_result_section(
mark_body.set_item(k, v)

if isinstance(v, list):
v = ','.join(v)
v = ','.join([item if isinstance(item, str) else str(item) for item in v])
elif not isinstance(v, str):
v = str(v)
_tag_mark_values(sig_res, k, v)
Expand Down

0 comments on commit be83cd2

Please sign in to comment.