use FileNotFoundError instead of OSError
This commit is contained in:
@@ -537,7 +537,7 @@ def build(options: Options, tmp_path: Path) -> None:
|
||||
if abi3_wheel is None:
|
||||
try:
|
||||
(build_options.output_dir / repaired_wheel.name).unlink()
|
||||
except OSError:
|
||||
except FileNotFoundError:
|
||||
pass
|
||||
|
||||
shutil.move(str(repaired_wheel), build_options.output_dir)
|
||||
|
||||
Reference in New Issue
Block a user