From 87414c2f59e9b6467d978eccae33a1ce204d7fd7 Mon Sep 17 00:00:00 2001 From: Joe Fleming Date: Fri, 18 Jul 2014 15:35:05 -0700 Subject: [PATCH] fix whitespace --- git/githelpers | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git/githelpers b/git/githelpers index 23224f6..8768108 100644 --- a/git/githelpers +++ b/git/githelpers @@ -30,10 +30,10 @@ pretty_git_log() { git log --graph --pretty="tformat:${FORMAT}" $* | # Replace (2 years ago) with (2 years) #sed -Ee 's/(^[^<]*) ago)/\1)/' | - sed -e 's/ ago//' | + sed -e 's/ ago//' | # Replace (2 years, 5 months) with (2 years) #sed -Ee 's/(^[^<]*), [[:digit:]]+ .*months?)/\1)/' | - sed -e 's/(^[^<]*), [[:digit:]]+ .*months?)/)/' | + sed -e 's/(^[^<]*), [[:digit:]]+ .*months?)/)/' | # Line columns up based on } delimiter column -s '}' -t | # Page only if we need to