mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-15 07:34:27 -04: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,
|
symbol,
|
||||||
ANSI['reset'],
|
ANSI['reset'],
|
||||||
name.ljust(22),
|
name.ljust(22),
|
||||||
(folder["path"] or '').ljust(76),
|
(str(folder["path"]) or '').ljust(76),
|
||||||
num_files.ljust(14),
|
num_files.ljust(14),
|
||||||
ANSI[color],
|
ANSI[color],
|
||||||
note,
|
note,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue