commit ee5e9c1b9374a49333117248377b57f87643bec1
parent 36379b8ab24cfcf505631aff155dd758ae229458
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date: Sat, 30 Dec 2006 15:45:08 +0000
minor bugfix
git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@127 5c8cc53c-5e98-4d25-b20a-d8db53a31250
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lib/sup/mbox/loader.rb b/lib/sup/mbox/loader.rb
@@ -4,6 +4,8 @@ module Redwood
module MBox
class Loader < Source
+ attr_reader :labels
+
def initialize uri_or_fp, start_offset=nil, usual=true, archived=false, id=nil
super
@@ -116,7 +118,7 @@ class Loader < Source
end
self.cur_offset = next_offset
- [returned_offset, @labels]
+ [returned_offset, labels]
end
end