From 6555b657b214dbe851b7eba208c2f6ed22723038 Mon Sep 17 00:00:00 2001 From: Erik Osheim Date: Fri, 23 Apr 2021 00:14:03 -0400 Subject: [PATCH] fix hg-log --HG-- branch : pmacs2 --- method/hg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/method/hg.py b/method/hg.py index ecd1f5b..842796c 100644 --- a/method/hg.py +++ b/method/hg.py @@ -45,7 +45,7 @@ class HgLog(Method, HgBase): if not self._hg_check(w): return ui_imp, repo = self._hg_init() - hgc.log(ui_imp, repo, user=None, rev=None, date=None) + hgc.log(ui_imp, repo) output = ui_imp.popbuffer().decode('UTF-8') w.application.data_buffer('*Log*', output, switch_to=True)