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…
Reference in a new issue