diff options
-rw-r--r-- | lib/gitlab_post_receive.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab_post_receive.rb b/lib/gitlab_post_receive.rb index 52dd965..1c9e8a6 100644 --- a/lib/gitlab_post_receive.rb +++ b/lib/gitlab_post_receive.rb @@ -62,7 +62,7 @@ class GitlabPostReceive # Center the line by calculating the left padding measured in characters. line_padding = [(total_width - line.length) / 2, 0].max - puts(" " * line_padding) + line + puts((" " * line_padding) + line) end puts |