commit a8f534704de2687869b5b7e9d178518ac1500126
parent 57f196c1ad4c36fa68a97f549b3fd33261a7688a
Author: William Morgan <wmorgan-sup@masanjin.net>
Date: Mon, 28 Jan 2008 12:21:52 -0800
Merge branch 'master' into next
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/person.rb b/lib/sup/person.rb
@@ -9,7 +9,7 @@ class PersonManager
## read in stored people
IO.readlines(fn).map do |l|
- l =~ /^(.*)?:\s+(\d+)\s+(.*)$/ or raise "can't parse: #{l}"
+ l =~ /^(.*)?:\s+(\d+)\s+(.*)$/ or next
email, time, name = $1, $2, $3
@@people[email] = Person.new name, email, time, false
end if File.exists? fn