Saver prune prefix matching. #38

This commit is contained in:
Manu 2018-11-22 09:50:35 +08:00
parent 3800b4f459
commit 2f0bc7d70e
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class BorgPruneThread(BorgThread):
'--keep-weekly', str(profile.prune_week),
'--keep-monthly', str(profile.prune_month),
'--keep-yearly', str(profile.prune_year),
'--prefix', platform.node()
'--prefix', f'{platform.node()}-'
]
cmd += pruning_opts
cmd.append(f'{profile.repo.url}')