mercurial/dirstate.py
changeset 43117 8ff1ecfadcd1
parent 43106 d783f945a701
child 43239 6fcdcea2b03a
--- a/mercurial/dirstate.py	Tue Oct 08 15:15:37 2019 -0700
+++ b/mercurial/dirstate.py	Tue Oct 08 15:06:18 2019 -0700
@@ -467,7 +467,7 @@
         '''Mark as coming from the other parent, always dirty.'''
         if self._pl[1] == nullid:
             raise error.Abort(
-                _(b"setting %r to other parent " b"only allowed in merges") % f
+                _(b"setting %r to other parent only allowed in merges") % f
             )
         if f in self and self[f] == b'n':
             # merge-like
@@ -1470,7 +1470,7 @@
         if self._pendingmode is not None and self._pendingmode != mode:
             fp.close()
             raise error.Abort(
-                _(b'working directory state may be ' b'changed parallelly')
+                _(b'working directory state may be changed parallelly')
             )
         self._pendingmode = mode
         return fp
@@ -1494,7 +1494,7 @@
                 self._parents = (nullid, nullid)
             else:
                 raise error.Abort(
-                    _(b'working directory state appears ' b'damaged!')
+                    _(b'working directory state appears damaged!')
                 )
 
         return self._parents
@@ -1671,7 +1671,7 @@
             if self._pendingmode is not None and self._pendingmode != mode:
                 fp.close()
                 raise error.Abort(
-                    _(b'working directory state may be ' b'changed parallelly')
+                    _(b'working directory state may be changed parallelly')
                 )
             self._pendingmode = mode
             return fp
@@ -1697,7 +1697,7 @@
                     self._parents = self._rustmap.parents(st)
                 except ValueError:
                     raise error.Abort(
-                        _(b'working directory state appears ' b'damaged!')
+                        _(b'working directory state appears damaged!')
                     )
 
             return self._parents