about summary refs log tree commit homepage
path: root/Rakefile
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-09-07 17:27:18 -0700
committerEric Wong <normalperson@yhbt.net>2009-09-07 17:27:18 -0700
commit5d77f491c59f79a7727d8699be2aaf12db9d81c6 (patch)
tree0e3d63899500b0be8a074d17f81e030e29651f9a /Rakefile
parent898d31b2ffa0383d62bf28c4fa49bc74aa92fde5 (diff)
downloadclogger-5d77f491c59f79a7727d8699be2aaf12db9d81c6.tar.gz
escaping issues are too painful to deal with
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 11bf2a9..dc7220c 100644
--- a/Rakefile
+++ b/Rakefile
@@ -15,7 +15,7 @@ task :history do
     time = Time.at(tagger[-2].to_i).utc
     puts "=== #{tag.sub(/^v/, '')} / #{time.strftime(timefmt)}"
     puts ""
-    puts body
+    puts body.gsub(/^/sm, "  ")
     puts ""
   end
 end