From: Thierry Parmentelat Date: Tue, 13 May 2014 09:34:39 +0000 (+0200) Subject: another bugfix X-Git-Tag: nodemanager-5.2-14~25 X-Git-Url: http://git.onelab.eu/?p=nodemanager.git;a=commitdiff_plain;h=13a17295e8064a3b61b9dee92b835bb0686d16c2 another bugfix --- diff --git a/plugins/vsys.py b/plugins/vsys.py index 6a557b8..f631d95 100644 --- a/plugins/vsys.py +++ b/plugins/vsys.py @@ -176,5 +176,5 @@ def trashVsysHandleInSliver (sliver): if not os.path.exists(slice_vsys_area): logger.log("vsys.trashVsysHandleInSliver: no action needed, %s not found"%slice_vsys_area) return - ret=subprocess.call([ 'rm', '-rf' , slice_vsys_area]) + retcod=subprocess.call([ 'rm', '-rf' , slice_vsys_area]) logger.log ("vsys.trashVsysHandleInSliver: Removed %s (retcod=%s)"%(slice_vsys_area,retcod))