diff --git a/trunk/ripnews/ripnews.rb b/trunk/ripnews/ripnews.rb index a9fc63d..eaff7f2 100755 --- a/trunk/ripnews/ripnews.rb +++ b/trunk/ripnews/ripnews.rb @@ -77,8 +77,8 @@ def parse_options(options) print "\nUsage:\n" exit end - print opts.error_message - print "Remaining args: #{ARGV.join(', ')}\n" + #print opts.error_message + #print "Remaining args: #{ARGV.join(', ')}\n" return options end @@ -191,7 +191,7 @@ def check_config end def get_single(subj) - print " Fetching singlepart article: #{subj}\n" + print "Fetching singlepart article: #{subj}\n" body = @articles.get_group_body(subj) if @articles.is_uuencoded(body) mode, filename, body = @articles.uudecode(body) @@ -208,7 +208,7 @@ def get_single(subj) end def get_multi(subj, group) - print " Fetching multipart article: #{subj}\n" + print "Fetching multipart article: #{subj}\n" if @config[group]["TEMPDIR"] == nil or @config[group]["TEMPDIR"] == "" body = @articles.get_group_body(subj) if @articles.is_uuencoded(body)