Cleanup imports of xattr

Since the module use re and os, we need to import them.
And rather than importing '*', we should limit to the
only object/function needed, so we can more easily refactor
later.
reviewable/pr18780/r1
Michael Scherer 8 years ago committed by Brian Coca
parent 20726b94be
commit 953cd915bb

@ -73,6 +73,8 @@ EXAMPLES = '''
'''
import operator
import re
import os
def get_xattr_keys(module,path,follow):
cmd = [ module.get_bin_path('getfattr', True) ]
@ -202,7 +204,7 @@ def main():
module.exit_json(changed=changed, msg=msg, xattr=res)
# import module snippets
from ansible.module_utils.basic import *
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.pycompat24 import get_exception
if __name__ == '__main__':
main()

Loading…
Cancel
Save