Browse Source

fix missing validator

boyska 1 year ago
parent
commit
ab472daf5e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      techrec/forge.py

+ 1 - 1
techrec/forge.py

@@ -212,7 +212,7 @@ async def create_mp3(
         raise Exception("timeout")  # TODO: make a specific TimeoutError
     if p.returncode != 0:
         raise OSError("return code was %d" % p.returncode)
-    if not validator(start, end, tmp_file.name):
+    if validator is not None and not validator(start, end, tmp_file.name):
         os.unlink(tmp_file.name)
         return False
     os.rename(tmp_file.name, outfile)