From 1a00730cdd948bec1833b5468b3c900317202519 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Wed, 3 Mar 2021 20:11:55 +0100 Subject: [PATCH] core: cleanup output for backup task --- authentik/core/tasks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/authentik/core/tasks.py b/authentik/core/tasks.py index aaf2c3aef..6a4072a66 100644 --- a/authentik/core/tasks.py +++ b/authentik/core/tasks.py @@ -46,8 +46,7 @@ def backup_database(self: MonitoredTask): # pragma: no cover TaskResult( TaskResultStatus.SUCCESSFUL, [ - f"Successfully finished database backup {naturaltime(start)}", - out.getvalue(), + f"Successfully finished database backup {naturaltime(start)} {out.getvalue()}", ], ) )