From 422664079a4d9fa105007eb3bc07fd897617fdd4 Mon Sep 17 00:00:00 2001 From: apkallum Date: Wed, 9 Sep 2020 21:26:00 -0400 Subject: [PATCH] fix test type casting for folder['path'] --- archivebox/logging_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/logging_util.py b/archivebox/logging_util.py index 8fc7bdb1..089d49ab 100644 --- a/archivebox/logging_util.py +++ b/archivebox/logging_util.py @@ -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,