Petr Horáček has uploaded a new change for review.
Change subject: Deprecated string.join() replaced
......................................................................
Deprecated string.join() replaced
Deprecated string.join(execfn, " ")) was replaced by
execfn.join(" ")).
Change-Id: I8d16939a5d1d4518d1d91a525d8b403b3be12787
Signed-off-by: Petr Horáček <[email protected]>
---
M vds_bootstrap/setup
1 file changed, 1 insertion(+), 2 deletions(-)
git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/97/31897/1
diff --git a/vds_bootstrap/setup b/vds_bootstrap/setup
index 972eb3e..d52d946 100755
--- a/vds_bootstrap/setup
+++ b/vds_bootstrap/setup
@@ -26,7 +26,6 @@
import logging
import logging.config
import traceback
-import string
import re
import tempfile
from time import strftime
@@ -190,7 +189,7 @@
execfn += [random_num]
execfn.append(str(int(rebootAfterInstallation)))
logging.debug("trying to run %s script cmd = '%s'",
- script, string.join(execfn, " "))
+ script, execfn.join(" "))
proc = subprocess.Popen(execfn)
proc.communicate()
if proc.returncode == 0:
--
To view, visit http://gerrit.ovirt.org/31897
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I8d16939a5d1d4518d1d91a525d8b403b3be12787
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Petr Horáček <[email protected]>
_______________________________________________
vdsm-patches mailing list
[email protected]
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches