comparison hgext/strip.py @ 43117:8ff1ecfadcd1

cleanup: join string literals that are already on one line Thanks to Kyle for noticing this and for providing the regular expression to run on the codebase. This patch has been reviewed by the test suite and they approved of it. # skip-blame: fallout from mass reformatting Differential Revision: https://phab.mercurial-scm.org/D7028
author Martin von Zweigbergk <martinvonz@google.com>
date Tue, 08 Oct 2019 15:06:18 -0700
parents 649d3ac37a12
children 9d2b2df2c2ba
comparison
equal deleted inserted replaced
43116:defabf63e969 43117:8ff1ecfadcd1
122 b'force removal of changesets, discard ' 122 b'force removal of changesets, discard '
123 b'uncommitted changes (no backup)' 123 b'uncommitted changes (no backup)'
124 ), 124 ),
125 ), 125 ),
126 (b'', b'no-backup', None, _(b'do not save backup bundle')), 126 (b'', b'no-backup', None, _(b'do not save backup bundle')),
127 ( 127 (b'', b'nobackup', None, _(b'do not save backup bundle (DEPRECATED)'),),
128 b'',
129 b'nobackup',
130 None,
131 _(b'do not save backup bundle ' b'(DEPRECATED)'),
132 ),
133 (b'n', b'', None, _(b'ignored (DEPRECATED)')), 128 (b'n', b'', None, _(b'ignored (DEPRECATED)')),
134 ( 129 (
135 b'k', 130 b'k',
136 b'keep', 131 b'keep',
137 None, 132 None,
138 _(b"do not modify working directory during " b"strip"), 133 _(b"do not modify working directory during strip"),
139 ), 134 ),
140 ( 135 (
141 b'B', 136 b'B',
142 b'bookmark', 137 b'bookmark',
143 [], 138 [],
144 _(b"remove revs only reachable from given" b" bookmark"), 139 _(b"remove revs only reachable from given bookmark"),
145 _(b'BOOKMARK'), 140 _(b'BOOKMARK'),
146 ), 141 ),
147 ( 142 (
148 b'', 143 b'',
149 b'soft', 144 b'soft',