Explorar o código

fix missing validator

boyska hai 1 ano
pai
achega
ab472daf5e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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)