1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

expand user home path in stat.

This commit is contained in:
Mark Mandel 2013-08-12 17:34:54 +10:00
parent 9b09ff4a65
commit 6e3ec9ccc0

View file

@ -67,6 +67,7 @@ def main():
)
path = module.params.get('path')
path = os.path.expanduser(path)
follow = module.params.get('follow')
try: