2
0
forked from Ivasoft/DSView

Bump version to v1.00

This commit is contained in:
Andy Dneg
2019-09-09 00:07:19 -07:00
parent f17c612cb1
commit 45204e6a8d
867 changed files with 40976 additions and 21501 deletions

View File

@@ -18,6 +18,7 @@
## along with this program; if not, see <http://www.gnu.org/licenses/>.
##
import errno
import os
import sys
from shutil import copy
@@ -64,7 +65,7 @@ def install(srcdir, dstdir, s):
try:
os.mkdir(pd_dst)
except OSError as e:
if e.errno != os.errno.EEXIST:
if e.errno != errno.EEXIST:
raise
else:
pass
@@ -119,5 +120,6 @@ if len(args) != 0 or dst is None:
usage()
install(src, dst, 'protocol decoders')
install(src + '/common', dst + '/common', 'common modules')