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:
parent
441460d81f
commit
952de5cb77
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue