summaryrefslogtreecommitdiffstats
path: root/deployment
diff options
context:
space:
mode:
Diffstat (limited to 'deployment')
-rwxr-xr-xdeployment/add-node.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/deployment/add-node.py b/deployment/add-node.py
index 6a4a6f75..d2b8383a 100755
--- a/deployment/add-node.py
+++ b/deployment/add-node.py
@@ -121,9 +121,9 @@ class VMWareAddNode(object):
for line in fileinput.input(vmware_ini_path, inplace=True):
if line.startswith("compute_nodes"):
- print "compute_nodes=" + self.compute_nodes
+ print "compute_nodes=" + str(self.compute_nodes)
elif line.startswith("storage_nodes"):
- print "storage_nodes=" + self.storage_nodes
+ print "storage_nodes=" + str(self.storage_nodes)
else:
print line,