Merge "Bug fix for obj_to_dict()"

This commit is contained in:
Jenkins 2015-08-08 00:46:58 +00:00 committed by Gerrit Code Review
commit 5637d13498
1 changed files with 1 additions and 1 deletions

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