mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-25 09:19:31 +00:00
Do datetime to date conversion using the local time zone
This commit is contained in:
parent
5443441e3f
commit
66885c3986
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ def do_purge(self, args):
|
|||
t0 = date.today() + timedelta(days=1) # Tomorrow
|
||||
daily = weekly = monthly = 0
|
||||
for archive in archives:
|
||||
t = archive.ts.date()
|
||||
t = to_localtime(archive.ts).date()
|
||||
if daily < args.daily and t < t0:
|
||||
daily += 1
|
||||
self.print_verbose('Archive "%s" is daily archive number %d',
|
||||
|
|
Loading…
Reference in a new issue