Bug fix for obj_to_dict()
Float values were being discarded by obj_to_dict(). Eek. Change-Id: Ia04c74ceda02e408ae4aa5b372a6976d12591589
This commit is contained in:
parent
1ead623f8c
commit
ef756c46b8
@ -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__)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user