From 0239ae6b76ad761a66d4578c741982a83b0b6efd Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Fri, 14 Jan 2022 23:42:15 -0800 Subject: [PATCH] Use absolute_path instead of Path object in log statement. --- ycdl/ycdldb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ycdl/ycdldb.py b/ycdl/ycdldb.py index b32adcb..170f6a6 100644 --- a/ycdl/ycdldb.py +++ b/ycdl/ycdldb.py @@ -508,7 +508,7 @@ class YCDLDB( *args, **kwargs, ) - log.debug('Found closest YCDLDB at %s.', path) + log.debug('Found closest YCDLDB at %s.', path.absolute_path) return ycdldb @staticmethod