Log absolute_path instead of the Path object.
This commit is contained in:
parent
359c255817
commit
a73263f27d
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue