1
0
Fork 0
mirror of synced 2024-06-26 18:10:24 +12:00

Fixed string casting

This commit is contained in:
Angel Rey 2020-09-30 15:30:06 -05:00 committed by Cristian Vargas
parent 7d513b9b19
commit 9264ad88e0

View file

@ -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: