Removes expanduser calls

The usage of type='path' includes the expanduser call itself. This
patch removes its duplicate usage. Related to #12263
pull/21926/merge
Tim Rupp 8 years ago committed by Brian Coca
parent f95a11a9db
commit 888c8614fb

@ -155,7 +155,7 @@ def main():
)
params = module.params
path = os.path.expanduser(params['path'])
path = params['path']
res_args = dict()
if os.path.isdir(path):

Loading…
Cancel
Save