From ef756c46b8f558d14d4c3baf989d4a8188233279 Mon Sep 17 00:00:00 2001 From: David Shrewsbury Date: Fri, 7 Aug 2015 18:52:02 +0000 Subject: [PATCH] Bug fix for obj_to_dict() Float values were being discarded by obj_to_dict(). Eek. Change-Id: Ia04c74ceda02e408ae4aa5b372a6976d12591589 --- shade/meta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shade/meta.py b/shade/meta.py index bbe1d20a9..1c83f1410 100644 --- a/shade/meta.py +++ b/shade/meta.py @@ -21,7 +21,7 @@ from shade import exc from shade import _utils -NON_CALLABLES = (six.string_types, bool, dict, int, list, type(None)) +NON_CALLABLES = (six.string_types, bool, dict, int, float, list, type(None)) log = logging.getLogger(__name__)