From 6e03f6ee0a619b14261573e0ad95234a6319b823 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Tue, 8 Feb 2022 10:49:42 -0500 Subject: [PATCH] Correct syntax typo --- confluent_server/bin/osdeploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/bin/osdeploy b/confluent_server/bin/osdeploy index 38ade0b5..1b9b6ba7 100644 --- a/confluent_server/bin/osdeploy +++ b/confluent_server/bin/osdeploy @@ -318,7 +318,7 @@ def initialize(cmdset): if not os.path.exists('confluent_uuid'): c = client.Command() for rsp in c.read('/uuid'): - uuid = rsp.get('uuid', {}}).get('value', None) + uuid = rsp.get('uuid', {}).get('value', None) if uuid: with open('confluent_uuid') as uuidout: uuidout.write(uuid)