1
0
Fork 0
mirror of synced 2024-06-28 11:00:35 +12:00

Replaced os.path in init index

This commit is contained in:
Angel Rey 2020-09-30 14:32:26 -05:00 committed by Cristian Vargas
parent 78f7062761
commit ad04fb5300

View file

@ -575,7 +575,7 @@ def is_archived(link: Link) -> bool:
return is_valid(link) and link.is_archived
def is_unarchived(link: Link) -> bool:
if not os.path.exists(link.link_dir):
if not Path(link.link_dir).exists():
return True
return not link.is_archived