fix recursion

This commit is contained in:
InspectorCaracal 2022-10-04 13:14:00 -06:00 committed by GitHub
parent 5d740ea98f
commit faa2553a86

View file

@ -351,7 +351,7 @@ class WeeklyLogFile(logfile.DailyLogFile):
def rotate(self):
try:
self.rotate()
super().rotate()
except Exception:
log_trace(f"Could not rotate the log file {self.name}.")