diff --git a/island/actions/islandAction_sync.py b/island/actions/islandAction_sync.py index 6fbb317..84782ae 100644 --- a/island/actions/islandAction_sync.py +++ b/island/actions/islandAction_sync.py @@ -69,7 +69,7 @@ def execute(arguments): if ret != "" \ and ret != False: # all is good, ready to get the system work corectly - debug.info("'" + ret + "'") + debug.info("'" + str(ret) + "'") debug.error("Clone repository does not work ... ") continue #debug.info("plop " + str(elem.select_remote.keys())) @@ -82,7 +82,7 @@ def execute(arguments): if ret != "" \ and ret != False: # all is good, ready to get the system work corectly - debug.info("'" + ret + "'") + debug.info("'" + str(ret) + "'") debug.error("Can not init submodules ... ") continue cmd = "git submodule update" @@ -93,7 +93,7 @@ def execute(arguments): elif ret != "" \ and ret != False: # all is good, ready to get the system work corectly - debug.info("'" + ret + "'") + debug.info("'" + str(ret) + "'") debug.error("Can not init submodules ... ") continue @@ -179,4 +179,4 @@ def execute(arguments): debug.info("'" + ret + "'") debug.error("Can not init submodules ... ") continue - """ \ No newline at end of file + """ diff --git a/setup.py b/setup.py index e2acee9..e18f9af 100755 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def readme(): # https://pypi.python.org/pypi?%3Aaction=list_classifiers setup(name='island', - version='0.2.0', + version='0.3.0', description='island generic source manager (like repo in simple mode)', long_description=readme(), url='http://github.com/HeeroYui/island',