- add blank line after section if beautify enabled

This commit is contained in:
cclecle
2022-09-05 01:35:20 +02:00
parent 80a50bc304
commit 9ba67b7fed

View File

@@ -140,6 +140,8 @@ class ChaChaSimpleINI_section(ChaChaSimpleINI_section_Base):
result = result + key.format()+ "\n"
elif isinstance(key,ChaChaSimpleINI_key_Blank) and (bBeautify==False):
result = result + "\n"
if bBeautify==True:
result = result + "\n"
return result
def appendCommentKey(self,delimiter:str,value:str):