From 19c6e474cde5d91856e83aabb67f80e314616cf1 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Mon, 26 Jan 2015 14:33:20 -0500 Subject: [PATCH] Missing boolen utility function export --- awx/main/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/utils.py b/awx/main/utils.py index b993ae5cc6..dbfc783766 100644 --- a/awx/main/utils.py +++ b/awx/main/utils.py @@ -27,7 +27,7 @@ from Crypto.Cipher import AES __all__ = ['get_object_or_400', 'get_object_or_403', 'camelcase_to_underscore', 'get_ansible_version', 'get_awx_version', 'update_scm_url', - 'get_type_for_model', 'get_model_for_type', + 'get_type_for_model', 'get_model_for_type', 'to_python_boolean', 'ignore_inventory_computed_fields', 'ignore_inventory_group_removal', '_inventory_updates']