diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-08-29 03:02:41 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-08-29 03:02:41 +0000 |
commit | c73e0b78f9b0faf7f14bc2e5e5783159ae9c4e67 (patch) | |
tree | 85454eeff750bde3256e67d0d906360740605659 /IkiWiki/Rcs | |
parent | 67c6ff9b086d90b2dd777a722b26b05daa648479 (diff) |
use --style default for get_ctime too
Diffstat (limited to 'IkiWiki/Rcs')
-rw-r--r-- | IkiWiki/Rcs/mercurial.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Rcs/mercurial.pm b/IkiWiki/Rcs/mercurial.pm index a892ee975..15edb3245 100644 --- a/IkiWiki/Rcs/mercurial.pm +++ b/IkiWiki/Rcs/mercurial.pm @@ -161,7 +161,7 @@ sub rcs_getctime ($) { #{{{ # XXX filename passes through the shell here, should try to avoid # that just in case my @cmdline = ("hg", "-R", $config{srcdir}, "log", "-v", "-l", '1', - "$config{srcdir}/$file"); + "--style", "default", "$config{srcdir}/$file"); open (my $out, "@cmdline |"); my @log = mercurial_log($out); |