Removes usage of expanduser due to type 'path'

Removes the usage of the expanduser function because it is
being performed automatically by the type 'path' of the
path option.
pull/21354/head
Tim Rupp 8 years ago committed by Brian Coca
parent 8cc98b07c5
commit f8cbfad5e6

@ -288,7 +288,7 @@ def main():
supports_check_mode = True
)
path = os.path.expanduser(module.params['path'])
path = module.params['path']
section = module.params['section']
option = module.params['option']
value = module.params['value']

Loading…
Cancel
Save