Skip to content

Commit

Permalink
fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
aarontp committed Oct 5, 2023
1 parent 43e8d7f commit 51af080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turbinia/api/cli/turbinia_client/helpers/formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def generate_markdown(
# Only show Task details if the Task has more priority than the
# priority_filter
if priority > priority_filter:
report.append(f'{self.heading2(name)}: {task.get('status')!s}')
report.append(f'{self.heading2(name)}: {task.get("status")!s}')
else:
report.append(self.heading2(name))
line = f"{self.bold('Evidence:'):s} {task.get('evidence_name')!s}"
Expand Down

0 comments on commit 51af080

Please sign in to comment.