From bec9ebbf30c80b370488f90939cec0f4759fb9f9 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 4 Nov 2016 15:37:04 -0400 Subject: [PATCH] added docs for new arg --- lib/ansible/utils/path.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/utils/path.py b/lib/ansible/utils/path.py index cd74877124..99a39b9722 100644 --- a/lib/ansible/utils/path.py +++ b/lib/ansible/utils/path.py @@ -31,6 +31,7 @@ def unfrackpath(path, follow=True): Returns a path that is free of symlinks (if follow=True), environment variables, relative path traversals and symbols (~) :arg path: A byte or text string representing a path to be canonicalized + :arg follow: A boolean to indicate of symlinks should be resolved or not :raises UnicodeDecodeError: If the canonicalized version of the path contains non-utf8 byte sequences. :rtype: A text string (unicode on pyyhon2, str on python3).