Browse Source

Prefix headers with newline

Changes this poor output:
   benchmarker : INFO     --------------------------------------------------------------------------------
      Starting go
   --------------------------------------------------------------------------------
Into this better output:
   benchmarker : INFO
   --------------------------------------------------------------------------------
      Starting go
   --------------------------------------------------------------------------------
Hamilton Turner 11 năm trước cách đây
mục cha
commit
85105f347e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      toolset/benchmark/utils.py

+ 1 - 1
toolset/benchmark/utils.py

@@ -37,5 +37,5 @@ class Header():
     topheader = topheader[:80]
     bottomheader = self.bottom * 80
     bottomheader = bottomheader[:80]
-    return "%s\n  %s\n%s" % (topheader, self.message, bottomheader)
+    return "\n%s\n  %s\n%s" % (topheader, self.message, bottomheader)