From ebe88f0bf25549c9533bedba7f22d6dd342da356 Mon Sep 17 00:00:00 2001 From: Valerii Ponomarov Date: Wed, 13 Feb 2019 00:52:57 +0530 Subject: [Deployment] Fix int-str concatenation in add-node.py file Change-Id: I51056965a55f73b0cb4b7dac8f1d4234f2f66528 --- deployment/add-node.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'deployment') 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, -- cgit