commit 941bcc495655b529b992d3f314db9b25977b3ad6
parent 5e2d930b5674799324432f46a1f31abb4b7b273b
Author: William Morgan <wmorgan-sup@masanjin.net>
Date: Thu, 1 Oct 2009 12:37:14 -0400
Merge branch 'master' into next
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/devel/start-console.rb b/devel/start-console.rb
@@ -1,5 +1,5 @@
require 'sup'
include Redwood
start
-Index.new
+Index.init
Index.load
diff --git a/lib/sup/mbox/loader.rb b/lib/sup/mbox/loader.rb
@@ -116,7 +116,7 @@ class Loader < Source
need_blank = File.exists?(@filename) && !File.zero?(@filename)
File.open(@filename, "a") do |f|
f.puts if need_blank
- f.puts "From #{from_email} #{date.utc}"
+ f.puts "From #{from_email} #{date.rfc2822}"
yield f
end
end