fix recursion

This commit is contained in:
InspectorCaracal 2022-10-04 13:14:00 -06:00 committed by GitHub
parent a2d7b9f3d4
commit 01edb1ab23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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}.")