Squashed commit of the following:

commit 885a2ed057
Author: Jens Langhammer <jens.langhammer@beryju.org>
Date:   Tue Jun 30 12:17:23 2020 +0200

    flows: fix linting error
This commit is contained in:
Jens Langhammer
2020-06-30 12:18:01 +02:00
parent b270fb0742
commit 9613fcde89
2 changed files with 3 additions and 3 deletions

View File

@ -117,7 +117,7 @@ class FlowExecutorView(View):
render(
request,
"flows/error.html",
{"error": exc, "tb": "".join(format_tb(exc.__traceback__)),},
{"error": exc, "tb": "".join(format_tb(exc.__traceback__))},
),
)
@ -139,7 +139,7 @@ class FlowExecutorView(View):
render(
request,
"flows/error.html",
{"error": exc, "tb": "".join(format_tb(exc.__traceback__)),},
{"error": exc, "tb": "".join(format_tb(exc.__traceback__))},
),
)