fix missing validator
This commit is contained in:
parent
03e201e6a2
commit
ab472daf5e
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue