skuroda wrote:great how export html was only discussed on say
def _find_file(abs_dir, file_name):
for root, dirnames, filenames in os.walk(abs_dir):
if file_name in filenames:
return os.path.join(root, file_name)
I think you can boil down the code to pretty much that, which will `return None` implicitly if nothing is found.