Mercurial > public > mercurial-scm > hg-stable
diff mercurial/state.py @ 45270:d4a28b76fa54
cleanup: fix bad formatting of state.py from D8811
`test-check-format.t` was failing for me. Do I just have the wrong
version?
Differential Revision: https://phab.mercurial-scm.org/D8841
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Tue, 28 Jul 2020 11:11:14 -0700 |
parents | a253ded5b03d |
children | 89a2afe31e82 |
line wrap: on
line diff
--- a/mercurial/state.py Thu Jul 30 16:13:17 2020 +0200 +++ b/mercurial/state.py Tue Jul 28 11:11:14 2020 -0700 @@ -170,12 +170,10 @@ self._opname, ) else: - return _(b"use 'hg %s --continue', 'hg %s --abort', " - b"or 'hg %s --stop'") % ( - self._opname, - self._opname, - self._opname, - ) + return _( + b"use 'hg %s --continue', 'hg %s --abort', " + b"or 'hg %s --stop'" + ) % (self._opname, self._opname, self._opname,) return self._cmdhint