From 4e2767ce9daed3044a27b95e1140633d002e05f0 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 27 Jan 2021 08:51:03 -0500 Subject: [PATCH] Update osdeploy --- confluent_server/bin/osdeploy | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/confluent_server/bin/osdeploy b/confluent_server/bin/osdeploy index cf95b64f..18a6f9c4 100644 --- a/confluent_server/bin/osdeploy +++ b/confluent_server/bin/osdeploy @@ -316,23 +316,23 @@ def updateboot(profilename): def oslist(): c = client.Command() - print "Distributions:" + print("Distributions:") for rsp in c.read('/deployment/distributions'): if 'error' in rsp: sys.stderr.write(res['error'] + '\n') exitcode = 1 else: print(" " + rsp['item']['href'].replace('/', '')) - print "" + print("") - print "Profiles:" + print("Profiles:") for rsp in c.read('/deployment/profiles'): if 'error' in rsp: sys.stderr.write(res['error'] + '\n') exitcode = 1 else: print(" " + rsp['item']['href'].replace('/', '')) - print "" + print("") def osimport(imagefile):