-t CONSOLE: Change delimiter.

No leading \n is necessary.

Signed-off-by: Thomas Hochstein <thh@inter.net>
This commit is contained in:
Thomas Hochstein 2010-04-10 01:43:19 +02:00
parent b955062245
commit 55bfbd3cde

View file

@ -315,9 +315,9 @@ sub post {
# Test mode?
if(defined($Options{'t'}) and $Options{'t'} =~ /console/i) {
print "\n-----BEGIN--------------------------------------------------\n";
print "-----BEGIN--------------------------------------------------\n";
print @$ArticleR;
print "\n------END---------------------------------------------------\n";
print "------END---------------------------------------------------\n";
return;
}