diff --git a/trunk/ripnews/ripnews.rb b/trunk/ripnews/ripnews.rb index 5d44fcf..937cb01 100755 --- a/trunk/ripnews/ripnews.rb +++ b/trunk/ripnews/ripnews.rb @@ -733,7 +733,7 @@ end def _primary_thres_skip(subj, group) if @config[group].has_key?("PRIMARYTHRES") if ( @articles.group_percentage_primary(subj) < @config[group]["PRIMARYTHRES"].to_i ) - print "Only #{@articles.group_percentage_primary(subj)}% of post on primary server, skipping #{subj}\n" + print "Only #{@articles.group_percentage_primary(subj)}% on primary, skipping: #{subj}\n" return true end end @@ -743,7 +743,7 @@ end def _fallback_thres_skip(subj, group) if @config[group].has_key?("FALLBACKTHRES") if ( @articles.group_percentage_fallback(subj) > @config[group]["FALLBACKTHRES"].to_i ) - print "#{@articles.group_percentage_fallback(subj)}% of post only on fallback server, skipping #{subj}\n" + print "#{@articles.group_percentage_fallback(subj)}% only on fallback, skipping: #{subj}\n" return true end end