From a43361bb98b5463ce84ecc85d2ec4c958f23dc2c Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 23 Oct 2019 14:38:45 -0400 Subject: [PATCH] Amend the prompt for single node prompting Remove the trailing slash --- confluent_client/confluent/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/confluent_client/confluent/client.py b/confluent_client/confluent/client.py index f1011952..57f63024 100644 --- a/confluent_client/confluent/client.py +++ b/confluent_client/confluent/client.py @@ -258,6 +258,7 @@ class Command(object): if nsize == 1: nodename = list(self.read( '/noderange/{0}/nodes/'.format(noderange)))[0].get('item', {}).get('href', None) + nodename = nodename[:-1] p = input('Command is about to affect node {0}, continue (y/n)? '.format(nodename)) else: p = input('Command is about to affect {0} nodes, continue (y/n)? '.format(nsize))