From bf31c4872fa3ae6bed83b1a31e6e057a9705de25 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 11 Mar 2020 09:22:16 -0400 Subject: [PATCH] Fix mistake in nodelicense save It was incorrectly presenting unrecognized error infomation. --- confluent_client/bin/nodelicense | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_client/bin/nodelicense b/confluent_client/bin/nodelicense index d574b686..95a3f3b1 100755 --- a/confluent_client/bin/nodelicense +++ b/confluent_client/bin/nodelicense @@ -98,7 +98,7 @@ def save_licenses(session, dirname): if fname: print('{0}: Saved license to {1}'.format(node, fname)) else: - sys.stderr.write('{0}: {1}', node, repr(res['databynode'][node])) + sys.stderr.write('{0}: {1}'.format(node, repr(res['databynode'][node]))) def show_licenses(session):