wbond / package_control

The Sublime Text package manager
https://packagecontrol.io
4.79k stars 814 forks source link

Avoid duplicated directory exists checks. #1529

Closed deathaxe closed 3 years ago

deathaxe commented 3 years ago

The os.makedirs() function raises an OSError by default if the path already exists. By passing exist_ok=True the function fails silently in such cases so no further checks are required.