diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-08-29 02:01:23 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-08-29 02:01:23 +0000 |
commit | 7813bcf08a9307491efd5b5d006412a5c8f5debe (patch) | |
tree | 9fde58041ba8a92e3403dc765c42ba9adbba046c /IkiWiki/Rcs | |
parent | f90cfde9e3984849f6aded9e42c3e252c9509e48 (diff) |
* mercurial: Pass --style defaults to hg log to ensure right format is used.
Diffstat (limited to 'IkiWiki/Rcs')
-rw-r--r-- | IkiWiki/Rcs/mercurial.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Rcs/mercurial.pm b/IkiWiki/Rcs/mercurial.pm index 3a75b40c5..3a9bb65e0 100644 --- a/IkiWiki/Rcs/mercurial.pm +++ b/IkiWiki/Rcs/mercurial.pm @@ -107,7 +107,8 @@ sub rcs_recentchanges ($) { #{{{ eval q{use CGI 'escapeHTML'}; error($@) if $@; - my @cmdline = ("hg", "-R", $config{srcdir}, "log", "-v", "-l", $num); + my @cmdline = ("hg", "-R", $config{srcdir}, "log", "-v", "-l", $num, + "--style", "defaults"); open (my $out, "@cmdline |"); eval q{use Date::Parse}; |