summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValerii Ponomarov <vponomar@redhat.com>2019-02-13 00:52:57 +0530
committerValerii Ponomarov <vponomar@redhat.com>2019-02-13 00:52:57 +0530
commitebe88f0bf25549c9533bedba7f22d6dd342da356 (patch)
tree76df3b3f46c399d767dd435bf5793c8510cc3d28
parentb853d34b42f822fb41fd8f2122d19692b98b2e8b (diff)
[Deployment] Fix int-str concatenation in add-node.py file
Change-Id: I51056965a55f73b0cb4b7dac8f1d4234f2f66528
-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,