environment: fixed comment and default separator
This commit is contained in:
parent
a2197f3a41
commit
c6524d0311
1 changed files with 4 additions and 2 deletions
|
@ -241,12 +241,14 @@ def apply_modifications(self):
|
|||
x.execute()
|
||||
|
||||
|
||||
def concatenate_paths(paths, separator=';'):
|
||||
def concatenate_paths(paths, separator=':'):
|
||||
"""
|
||||
Concatenates an iterable of paths into a string of column separated paths
|
||||
Concatenates an iterable of paths into a string of paths separated by
|
||||
separator, defaulting to colon
|
||||
|
||||
Args:
|
||||
paths: iterable of paths
|
||||
separator: the separator to use, default ':'
|
||||
|
||||
Returns:
|
||||
string
|
||||
|
|
Loading…
Reference in a new issue