mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 14:44:18 +00:00
fix test type casting for folder['path']
This commit is contained in:
parent
0144f19227
commit
422664079a
1 changed files with 1 additions and 1 deletions
|
@ -535,7 +535,7 @@ def printable_folder_status(name: str, folder: Dict) -> str:
|
|||
symbol,
|
||||
ANSI['reset'],
|
||||
name.ljust(22),
|
||||
(folder["path"] or '').ljust(76),
|
||||
(str(folder["path"]) or '').ljust(76),
|
||||
num_files.ljust(14),
|
||||
ANSI[color],
|
||||
note,
|
||||
|
|
Loading…
Reference in a new issue