From b7f8091b2a67a93a67d631a112f24c91cbe79129 Mon Sep 17 00:00:00 2001 From: Eric Gable Date: Wed, 19 Feb 2014 14:44:21 -0800 Subject: [PATCH] Fix bug in json logic --- waagent | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waagent b/waagent index 33047c2..81e5dba 100755 --- a/waagent +++ b/waagent @@ -2680,7 +2680,7 @@ class ExtensionsConfig(object): else : jsn= json.loads(manifest) if jsn.has_key('handlerManifest') : - cmd = jsn.[handlerManifest]['installCommand'] + cmd = jsn[handlerManifest]['installCommand'] else : Error('Key handlerManifest not found. Handler cannot be installed.') if len(cmd) == 0 :