From 9264ad88e00721482048f7a68a40e9fe8184d519 Mon Sep 17 00:00:00 2001 From: Angel Rey Date: Wed, 30 Sep 2020 15:30:06 -0500 Subject: [PATCH] Fixed string casting --- archivebox/index/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/index/schema.py b/archivebox/index/schema.py index dd8fe7cd..68d840a2 100644 --- a/archivebox/index/schema.py +++ b/archivebox/index/schema.py @@ -249,7 +249,7 @@ class Link: @property def link_dir(self) -> str: from ..config import CONFIG - return Path(CONFIG['ARCHIVE_DIR']) / self.timestamp + return str(Path(CONFIG['ARCHIVE_DIR']) / self.timestamp) @property def archive_path(self) -> str: