do not validate existence of maketx path after calling 'get_oiio_tools_path'

This commit is contained in:
Jakub Trllo 2022-11-24 16:13:36 +01:00
parent 25638e967a
commit 72840c2805

View file

@ -90,7 +90,7 @@ def maketx(source, destination, args, logger):
maketx_path = get_oiio_tools_path("maketx")
if not os.path.exists(maketx_path):
if not maketx_path:
print(
"OIIO tool not found in {}".format(maketx_path))
raise AssertionError("OIIO tool not found")