Merge pull request #525 from QuantumGhost/devel

Use expanduser to deal with path in bower module
This commit is contained in:
Toshio Kuratomi 2015-05-22 09:14:41 -07:00
commit 06c7522f2b

View file

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