mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
single quotes
This commit is contained in:
parent
339b0a51be
commit
615f00580e
@ -309,7 +309,7 @@ def check_user(user):
|
|||||||
|
|
||||||
|
|
||||||
def list_path_traversal(path):
|
def list_path_traversal(path):
|
||||||
"""
|
'''
|
||||||
Returns a full list of directories leading up to, and including, a path.
|
Returns a full list of directories leading up to, and including, a path.
|
||||||
|
|
||||||
So list_path_traversal('/path/to/salt') would return:
|
So list_path_traversal('/path/to/salt') would return:
|
||||||
@ -319,7 +319,7 @@ def list_path_traversal(path):
|
|||||||
This routine has been tested on Windows systems as well.
|
This routine has been tested on Windows systems as well.
|
||||||
list_path_traversal('c:\\path\\to\\salt') on Windows would return:
|
list_path_traversal('c:\\path\\to\\salt') on Windows would return:
|
||||||
['c:\\', 'c:\\path', 'c:\\path\\to', 'c:\\path\\to\\salt']
|
['c:\\', 'c:\\path', 'c:\\path\\to', 'c:\\path\\to\\salt']
|
||||||
"""
|
'''
|
||||||
out = [path]
|
out = [path]
|
||||||
(head, tail) = os.path.split(path)
|
(head, tail) = os.path.split(path)
|
||||||
if tail == '':
|
if tail == '':
|
||||||
|
Loading…
Reference in New Issue
Block a user