From 46f53182a37a131dbec46c785b1815058c664771 Mon Sep 17 00:00:00 2001 From: Ward Wouts Date: Tue, 6 Dec 2005 21:40:13 +0000 Subject: [PATCH] nicer wording --- trunk/ripnews/ripnews.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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