Ignore the "in progress" diff directory when considering a link target, derp

This commit is contained in:
Mike 2019-08-05 01:22:26 -07:00
parent 1d3e08e804
commit 9106924993
1 changed files with 1 additions and 1 deletions

View File

@ -543,7 +543,7 @@ class MikesBackup:
name = match.group("name")
date = match.group("date")
if name == "." or name == "..":
if name == "." or name == ".." or name == self.CONST_DIFFERENTIAL_IN_PROGRESS_DIRECTORY_NAME:
continue
if newest_path is None or date > newest_path_date: