Log absolute_path instead of the Path object.

This commit is contained in:
voussoir 2021-12-20 16:43:14 -08:00
parent 359c255817
commit a73263f27d
No known key found for this signature in database
GPG key ID: 5F7554F8C26DACCB

View file

@ -908,7 +908,7 @@ def walk(
queue.append(path)
while queue:
current = queue.pop()
log.debug('Scanning %s.', current)
log.debug('Scanning %s.', current.absolute_path)
current_rstrip = current.absolute_path.rstrip(os.sep)
if yield_style is YIELD_STYLE_NESTED: