Submitter | phabricator |
---|---|
Date | March 12, 2021, 6:08 p.m. |
Message ID | <differential-rev-PHID-DREV-qldmfmtwbsd55hhxjroj-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/48483/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/logcmdutil.py b/mercurial/logcmdutil.py --- a/mercurial/logcmdutil.py +++ b/mercurial/logcmdutil.py @@ -51,6 +51,7 @@ Dict, List, Optional, + Sequence, Tuple, ) @@ -723,7 +724,7 @@ def parseopts(ui, pats, opts): - # type: (Any, List[bytes], Dict[bytes, Any]) -> walkopts + # type: (Any, Sequence[bytes], Dict[bytes, Any]) -> walkopts """Parse log command options into walkopts The returned walkopts will be passed in to getrevs() or makewalker().