tools/makemanifest.py: Use errno.EEXIST instead of number 17.

To make this code more portable, across different platforms.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2020-07-26 10:56:24 +10:00
parent 441460d81f
commit 952de5cb77
1 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@
# THE SOFTWARE. # THE SOFTWARE.
from __future__ import print_function from __future__ import print_function
import errno
import sys import sys
import os import os
import subprocess import subprocess
@ -171,7 +172,7 @@ def mkdir(path):
try: try:
os.mkdir(cur_path) os.mkdir(cur_path)
except OSError as er: except OSError as er:
if er.args[0] == 17: # file exists if er.args[0] == errno.EEXIST:
pass pass
else: else:
raise er raise er