Skip to content

Commit

Permalink
middleware: fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdanp committed Jul 24, 2023
1 parent 875bd08 commit 0c255cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_dramatiq/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def after_process_message(self, broker, message, *, result=None, exception=None,
exc_traceback,
limit=30,
)
message.options['traceback'] = ''.join(formatted_exception)
message.options["traceback"] = "".join(formatted_exception)
elif status is None:
status = Task.STATUS_DONE

Expand Down

0 comments on commit 0c255cd

Please sign in to comment.