Skip to content

Commit 70b1012

Browse files
reduced minimal time for monthly to 28 days to deal with february (hopefully)
1 parent f259c0f commit 70b1012

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rsnapshot-once.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def parseConfig(configpath, configfile):
283283
elif COMMAND == "weekly":
284284
TIMEMIN = datetime.timedelta(days=6, hours=22)
285285
elif COMMAND == "monthly":
286-
TIMEMIN = datetime.timedelta(days=29)
286+
TIMEMIN = datetime.timedelta(days=28)
287287
else:
288288
logft("Error: This should not happen. ERROR.", LOGFILE)
289289
abortlog(LOGFILE)

0 commit comments

Comments
 (0)