1
0
Fork 0
mirror of synced 2024-06-01 10:09:49 +12:00

fix test type casting for folder['path']

This commit is contained in:
apkallum 2020-09-09 21:26:00 -04:00 committed by Cristian Vargas
parent 0144f19227
commit 422664079a

View file

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