Change the f5 modules to use f5_utils file (#21466)

The f5 module utils were using a file name that appeared to
conflict with the f5 python SDK's namespace. This patch just changes
the name of the included class to be f5_utils to avoid the issue
of namespace collisions
This commit is contained in:
Tim Rupp 2017-02-15 08:51:13 -08:00 committed by John R Barker
parent 21d993a4b8
commit 2a9778e320
26 changed files with 167 additions and 67 deletions

View file

@ -366,7 +366,7 @@ def main():
from ansible.module_utils.basic import *
from ansible.module_utils.ec2 import camel_dict_to_snake_dict
from ansible.module_utils.f5 import *
from ansible.module_utils.f5_utils import *
if __name__ == '__main__':
main()