diff -r c1e5b9f19483 -r c74815729afd editors/CodeFileEditor.py --- a/editors/CodeFileEditor.py Thu Aug 17 17:25:17 2017 +0300 +++ b/editors/CodeFileEditor.py Fri Aug 18 12:36:31 2017 +0300 @@ -135,9 +135,10 @@ for section in self.Controler.SECTIONS_NAMES: section_comment = " %s section " % (section) len_headers = EDGE_COLUMN - len(section_comment) - section_comment = self.COMMENT_HEADER * (len_headers / 2) + \ - section_comment + \ - self.COMMENT_HEADER * (len_headers - len_headers / 2) + section_comment = \ + self.COMMENT_HEADER * (len_headers / 2) + \ + section_comment + \ + self.COMMENT_HEADER * (len_headers - len_headers / 2) self.SectionsComments[section] = { "comment": section_comment,