1
0
Fork 0

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
1 changed files with 1 additions and 1 deletions

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,