Fix date format for child files

This commit is contained in:
Сергей Морозов 2022-05-31 08:52:45 +03:00
parent 1709fd5974
commit d2689fc3ab
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class backupFile():
if weekly == None: weekly = self.weekly
if monthly == None: monthly = self.monthly
if dateformat == None: dateformat = self.dateformat
newfile = backupFile(daily, weekly, monthly, path)
newfile = backupFile(daily, weekly, monthly, path, dateformat)
return(newfile)
def __str__(self):