Commit 893191ca authored by Tong Zeng's avatar Tong Zeng
Browse files

fix a bug in list_files_with_name

parent ac085628
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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