Removes usage of expanduser because of type path

The usage of type 'path' for the path option makes the use
of expanduser redundant. This patch removes the expanduser
call because the path type is already used for the path
option
This commit is contained in:
Tim Rupp 2017-02-11 10:34:21 -08:00 committed by Brian Coca
parent 2cb658925b
commit b49d39c5db

View file

@ -209,7 +209,7 @@ def main():
name = module.params['name']
offline = module.params['offline']
production = module.params['production']
path = os.path.expanduser(module.params['path'])
path = module.params['path']
relative_execpath = module.params['relative_execpath']
state = module.params['state']
version = module.params['version']