diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-10-04 09:00:08 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-10-04 09:00:08 +0000 |
commit | f948133a6172f0be92f51ef688600ed335363a9b (patch) | |
tree | 5d276a36178aa625d03040640c41679e86a7dd49 /IkiWiki | |
parent | 868d78293f68d54daf704b80558564c2259c35b7 (diff) | |
download | ikiwiki-f948133a6172f0be92f51ef688600ed335363a9b.tar ikiwiki-f948133a6172f0be92f51ef688600ed335363a9b.tar.gz |
* Tidy ctime debug output for git.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Rcs/git.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Rcs/git.pm b/IkiWiki/Rcs/git.pm index 9f64b8630..563d10859 100644 --- a/IkiWiki/Rcs/git.pm +++ b/IkiWiki/Rcs/git.pm @@ -467,7 +467,7 @@ sub rcs_getctime ($) { #{{{ my $sha1 = git_sha1($file); my $ci = git_commit_info($sha1); my $ctime = $ci->{'author_epoch'}; - debug("ctime for '$file': ". localtime($ctime) . "\n"); + debug("ctime for '$file': ". localtime($ctime)); return $ctime; } #}}} |