mirror of
https://github.com/pirate/ArchiveBox.git
synced 2025-08-28 00:30:03 +02:00
Fixed string casting
This commit is contained in:
committed by
Cristian Vargas
parent
7d513b9b19
commit
9264ad88e0
@@ -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:
|
||||
|
Reference in New Issue
Block a user