Submitter | phabricator |
---|---|
Date | Feb. 18, 2018, 2:17 p.m. |
Message ID | <b1b8264fb7bf4fb6615b5f8aa224fe9f@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/28097/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -3196,7 +3196,7 @@ guards[g] += 1 if ui.verbose: guards['NONE'] = noguards - guards = guards.items() + guards = list(guards.items()) guards.sort(key=lambda x: x[0][1:]) if guards: ui.note(_('guards in series file:\n'))