Bugfix: Bad var name caused wrong files to be deleted in check for max items
This commit is contained in:
parent
effa940e69
commit
86aed2d1f1
@ -14,6 +14,7 @@ Released under the GNU GENERAL PUBLIC LICENSE v3 (See LICENSE file for more)
|
|||||||
|
|
||||||
import datetime
|
import datetime
|
||||||
import os
|
import os
|
||||||
|
# import pprint
|
||||||
import shutil
|
import shutil
|
||||||
import sys
|
import sys
|
||||||
import syslog
|
import syslog
|
||||||
@ -185,7 +186,7 @@ class BackupRotator:
|
|||||||
self.log("Removing items")
|
self.log("Removing items")
|
||||||
for child_to_purge in children_to_purge:
|
for child_to_purge in children_to_purge:
|
||||||
child_basename = os.path.basename(child_to_purge)
|
child_basename = os.path.basename(child_to_purge)
|
||||||
self._remove_item(config, item_to_purge)
|
self._remove_item(config, child_to_purge)
|
||||||
|
|
||||||
def _rotate_path_for_maximum_age(self, config, path: str, max_age_days: int):
|
def _rotate_path_for_maximum_age(self, config, path: str, max_age_days: int):
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user