From ab426cfac80690d76e4fd2e97a6b8481ef12ad35 Mon Sep 17 00:00:00 2001 From: nomeu Date: Wed, 27 Feb 2013 14:56:21 +0900 Subject: [PATCH] skip denied bowl --- bin/load-arcs-bowl.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/load-arcs-bowl.rb b/bin/load-arcs-bowl.rb index 05e760c..d878fe5 100644 --- a/bin/load-arcs-bowl.rb +++ b/bin/load-arcs-bowl.rb @@ -17,7 +17,7 @@ Bowl.each_code_in_rss do |code| number = /dl(\d+)\z/.match(code)[1].to_i bowl = Bowl.new(code) bowl.load - next if bowl.removed? + next if bowl.removed? || bowl.denied? name = bowl.name summary = bowl.summary -- 2.11.0