cleanup: fix bad formatting of state.py from D8811
authorMartin von Zweigbergk <martinvonz@google.com>
Tue, 28 Jul 2020 11:11:14 -0700
changeset 45244 d4a28b76fa54
parent 45243 ad7006830106
child 45245 b4887d0680a4
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
mercurial/state.py
--- 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