correction de bug

This commit is contained in:
2022-12-21 21:06:22 +01:00
parent 0ccae34305
commit 4f51b8f41a
+1 -2
View File
@@ -59,8 +59,7 @@ class SizedTimedRotatingFileHandler(handlers.TimedRotatingFileHandler):
def shouldRollover(self, record):
'''
'''
return handlers.TimedRotatingFileHandler.shouldRollover(self, record) or handlers.RotatingFileHa
ndler.shouldRollover(self, record)
return handlers.TimedRotatingFileHandler.shouldRollover(self, record) or handlers.RotatingFileHandler.shouldRollover(self, record)
def doRollover(self):
'''