diff options
author | Jakub Narebski <jnareb@gmail.com> | 2009-05-11 19:37:28 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-05-13 10:33:53 -0700 |
commit | 3278fbc5ce39e0f7bf095ce99912dccbc347b4d7 (patch) | |
tree | d72d378b83dee0c046959ad8142c082f21524307 /gitweb | |
parent | 68cedb1fea0bbcd5f7c32ce10e3c346bc6db38c5 (diff) | |
download | git-3278fbc5ce39e0f7bf095ce99912dccbc347b4d7.tar.gz git-3278fbc5ce39e0f7bf095ce99912dccbc347b4d7.tar.xz |
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>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.perl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 8c51f3e79..beb79eebd 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -3990,7 +3990,7 @@ sub fill_project_list_info { ($pname !~ /\/$/) && (-d "$projectroot/$pname")) { $pr->{'forks'} = "-d $projectroot/$pname"; - } else { + } else { $pr->{'forks'} = 0; } } @@ -6282,7 +6282,7 @@ XML # end of feed if ($format eq 'rss') { print "</channel>\n</rss>\n"; - } elsif ($format eq 'atom') { + } elsif ($format eq 'atom') { print "</feed>\n"; } } |