mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Properly count newlines appearing at the end of templates after rendering
Fixes #4633
This commit is contained in:
@@ -5,3 +5,11 @@ def isprintable(instring):
|
||||
isprintable = set(instring).issubset(printset)
|
||||
return isprintable
|
||||
|
||||
def count_newlines_from_end(str):
|
||||
i = len(str)
|
||||
while i > 0:
|
||||
if str[i-1] != '\n':
|
||||
break
|
||||
i -= 1
|
||||
return len(str) - i
|
||||
|
||||
|
||||
Reference in New Issue
Block a user