fix: syntax error in restic.py

This commit is contained in:
Silthus 2020-11-16 12:07:19 +01:00
parent ded4d9bdf7
commit 1248843e72
1 changed files with 2 additions and 2 deletions

View File

@ -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,
]))