From 1248843e7269e4cfea03452ac526c4bfce8164b8 Mon Sep 17 00:00:00 2001 From: Silthus Date: Mon, 16 Nov 2020 12:07:19 +0100 Subject: [PATCH] fix: syntax error in restic.py --- src/restic_compose_backup/restic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/restic_compose_backup/restic.py b/src/restic_compose_backup/restic.py index fcc5c6b..6bdee08 100644 --- a/src/restic_compose_backup/restic.py +++ b/src/restic_compose_backup/restic.py @@ -83,7 +83,7 @@ def forget(repository: str, keeplast: str, hourly: str, daily: str, weekly: str, '-keep-last', keeplast, '--keep-hourly', - hourly + hourly, '--keep-daily', daily, '--keep-weekly', @@ -93,7 +93,7 @@ def forget(repository: str, keeplast: str, hourly: str, daily: str, weekly: str, '--keep-yearly', yearly, '--keep-tag', - tags + tags, ]))