editors/CodeFileEditor.py
changeset 1767 c74815729afd
parent 1766 c1e5b9f19483
child 1768 691083b5682a
--- 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,