Merge pull request #4543 from tong-zeng/master
Fix a bug in list_files_with_name
This commit is contained in:
commit
b8a2e38758
|
@ -140,7 +140,7 @@ def list_files_with_name(filename):
|
|||
continue
|
||||
|
||||
path = os.path.join(dirpath, filename)
|
||||
if os.path.isfile(filename):
|
||||
if os.path.isfile(path):
|
||||
res.append(path)
|
||||
|
||||
return res
|
||||
|
|
Loading…
Reference in New Issue