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>
pull/6286/head
Damien George 2020-07-26 10:56:24 +10:00
rodzic 441460d81f
commit 952de5cb77
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

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