gitweb: Replace wrongly added tabs with spaces

In two places there was hard tab character instead of space.
Fix this.

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jakub Narebski 2009-05-11 19:37:28 +02:00 committed by Junio C Hamano
parent 68cedb1fea
commit 3278fbc5ce

View File

@ -3990,7 +3990,7 @@ sub fill_project_list_info {
($pname !~ /\/$/) && ($pname !~ /\/$/) &&
(-d "$projectroot/$pname")) { (-d "$projectroot/$pname")) {
$pr->{'forks'} = "-d $projectroot/$pname"; $pr->{'forks'} = "-d $projectroot/$pname";
} else { } else {
$pr->{'forks'} = 0; $pr->{'forks'} = 0;
} }
} }
@ -6282,7 +6282,7 @@ XML
# end of feed # end of feed
if ($format eq 'rss') { if ($format eq 'rss') {
print "</channel>\n</rss>\n"; print "</channel>\n</rss>\n";
} elsif ($format eq 'atom') { } elsif ($format eq 'atom') {
print "</feed>\n"; print "</feed>\n";
} }
} }