Bug fix for obj_to_dict()

Float values were being discarded by obj_to_dict(). Eek.

Change-Id: Ia04c74ceda02e408ae4aa5b372a6976d12591589
This commit is contained in:
David Shrewsbury 2015-08-07 18:52:02 +00:00
parent 1ead623f8c
commit ef756c46b8

View File

@ -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__)