diff --git a/trunk/ripnews/ripnews.rb b/trunk/ripnews/ripnews.rb index 178d697..f4eed83 100755 --- a/trunk/ripnews/ripnews.rb +++ b/trunk/ripnews/ripnews.rb @@ -1,6 +1,6 @@ #!/usr/local/bin/ruby -w -# $Dwarf: ripnews.rb,v 1.52 2003/04/24 12:14:36 ward Exp $ +# $Dwarf: ripnews.rb,v 1.53 2003/04/27 22:28:59 ward Exp $ # $Source$ require 'date' @@ -352,14 +352,14 @@ def check_ext(group, filename, mode, subject) case mode when "s" if @config[group].has_key?("-SD") && ( filename =~ /\.(#{@config[group]["-SD"]})$/ ) - print "Marking '#{subject}' matches as read\n" + print " Marking '#{subject}' matches as read\n" @articles.group_update_newsrc(subject) return false end return @config[group].has_key?("-S") ? ( filename =~ /\.(#{@config[group]["-S"]})$/ ) : true when "m" if @config[group].has_key?("-MD") && ( filename =~ /\.(#{@config[group]["-MD"]})$/ ) - print "Marking '#{subject}' matches as read\n" + print " Marking '#{subject}' matches as read\n" @articles.group_update_newsrc(subject) return false end