1
0
Fork 0
mirror of synced 2024-06-26 02:41:10 -04:00
dotbot/dotbot/util/string.py

5 lines
193 B
Python
Raw Normal View History

2021-02-15 06:11:16 -05:00
def indent_lines(string, amount=2, delimiter="\n"):
whitespace = " " * amount
sep = "%s%s" % (delimiter, whitespace)
return "%s%s" % (whitespace, sep.join(string.split(delimiter)))