[DEV] new version

This commit is contained in:
Edouard Dupin 2017-03-23 22:23:08 +00:00
parent 11e39de3bd
commit e916efde7b
2 changed files with 5 additions and 5 deletions

View File

@ -69,7 +69,7 @@ def execute(arguments):
if ret != "" \ if ret != "" \
and ret != False: and ret != False:
# all is good, ready to get the system work corectly # all is good, ready to get the system work corectly
debug.info("'" + ret + "'") debug.info("'" + str(ret) + "'")
debug.error("Clone repository does not work ... ") debug.error("Clone repository does not work ... ")
continue continue
#debug.info("plop " + str(elem.select_remote.keys())) #debug.info("plop " + str(elem.select_remote.keys()))
@ -82,7 +82,7 @@ def execute(arguments):
if ret != "" \ if ret != "" \
and ret != False: and ret != False:
# all is good, ready to get the system work corectly # all is good, ready to get the system work corectly
debug.info("'" + ret + "'") debug.info("'" + str(ret) + "'")
debug.error("Can not init submodules ... ") debug.error("Can not init submodules ... ")
continue continue
cmd = "git submodule update" cmd = "git submodule update"
@ -93,7 +93,7 @@ def execute(arguments):
elif ret != "" \ elif ret != "" \
and ret != False: and ret != False:
# all is good, ready to get the system work corectly # all is good, ready to get the system work corectly
debug.info("'" + ret + "'") debug.info("'" + str(ret) + "'")
debug.error("Can not init submodules ... ") debug.error("Can not init submodules ... ")
continue continue

View File

@ -16,7 +16,7 @@ def readme():
# https://pypi.python.org/pypi?%3Aaction=list_classifiers # https://pypi.python.org/pypi?%3Aaction=list_classifiers
setup(name='island', setup(name='island',
version='0.2.0', version='0.3.0',
description='island generic source manager (like repo in simple mode)', description='island generic source manager (like repo in simple mode)',
long_description=readme(), long_description=readme(),
url='http://github.com/HeeroYui/island', url='http://github.com/HeeroYui/island',