comparison hgext/fastannotate/commands.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 4aa72cdf616f
children 9f70512ae2cf
comparison
equal deleted inserted replaced
43116:defabf63e969 43117:8ff1ecfadcd1
91 (b'c', b'changeset', None, _(b'list the changeset')), 91 (b'c', b'changeset', None, _(b'list the changeset')),
92 ( 92 (
93 b'l', 93 b'l',
94 b'line-number', 94 b'line-number',
95 None, 95 None,
96 _(b'show line number at the first ' b'appearance'), 96 _(b'show line number at the first appearance'),
97 ), 97 ),
98 ( 98 (
99 b'e', 99 b'e',
100 b'deleted', 100 b'deleted',
101 None, 101 None,
125 ), 125 ),
126 ( 126 (
127 b'', 127 b'',
128 b'rebuild', 128 b'rebuild',
129 None, 129 None,
130 _(b'rebuild cache even if it exists ' b'(EXPERIMENTAL)'), 130 _(b'rebuild cache even if it exists (EXPERIMENTAL)'),
131 ), 131 ),
132 ] 132 ]
133 + commands.diffwsopts 133 + commands.diffwsopts
134 + commands.walkopts 134 + commands.walkopts
135 + commands.formatteropts, 135 + commands.formatteropts,