diff --git a/ChaChaSimpleINI/core.py b/ChaChaSimpleINI/core.py index 5a832db..3d142ce 100644 --- a/ChaChaSimpleINI/core.py +++ b/ChaChaSimpleINI/core.py @@ -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):