1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-27 16:20:05 +02: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 return is_valid(link) and link.is_archived
def is_unarchived(link: Link) -> bool: def is_unarchived(link: Link) -> bool:
if not os.path.exists(link.link_dir): if not Path(link.link_dir).exists():
return True return True
return not link.is_archived return not link.is_archived