fix: syntax error in restic.py

This commit is contained in:
Silthus 2020-11-16 12:07:19 +01:00
parent ded4d9bdf7
commit 1248843e72

View file

@ -83,7 +83,7 @@ def forget(repository: str, keeplast: str, hourly: str, daily: str, weekly: str,
'-keep-last', '-keep-last',
keeplast, keeplast,
'--keep-hourly', '--keep-hourly',
hourly hourly,
'--keep-daily', '--keep-daily',
daily, daily,
'--keep-weekly', '--keep-weekly',
@ -93,7 +93,7 @@ def forget(repository: str, keeplast: str, hourly: str, daily: str, weekly: str,
'--keep-yearly', '--keep-yearly',
yearly, yearly,
'--keep-tag', '--keep-tag',
tags tags,
])) ]))