Skip to content

Commit e83a750

Browse files
committed
Use exist_ok instead of exist
1 parent 7a7586c commit e83a750

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def save_executables(data, base_dir):
105105
output_path = path.join(base_dir, exe)
106106
try:
107107
# Python 3
108-
makedirs(base_dir, exists=True)
108+
makedirs(base_dir, exist_ok=True)
109109
except TypeError:
110110
# Python 2.7
111111
makedirs(base_dir)

0 commit comments

Comments
 (0)