Show More
@@ -23,7 +23,6 b' import re' | |||
|
23 | 23 | from mercurial.i18n import _ |
|
24 | 24 | from mercurial import ( |
|
25 | 25 | error, |
|
26 | extensions, | |
|
27 | 26 | fancyopts, |
|
28 | 27 | registrar, |
|
29 | 28 | util, |
@@ -197,13 +196,7 b' def blame(ui, repo, *args, **kwargs):' | |||
|
197 | 196 | cmdoptions = [ |
|
198 | 197 | ] |
|
199 | 198 | args, opts = parseoptions(ui, cmdoptions, args) |
|
200 | try: | |
|
201 | # If tweakdefaults is enabled then we have access to -p, which adds | |
|
202 | # Phabricator diff ID | |
|
203 | extensions.find('tweakdefaults') | |
|
204 | cmd = Command('annotate -pudl') | |
|
205 | except KeyError: | |
|
206 | cmd = Command('annotate -udl') | |
|
199 | cmd = Command('annotate -udl') | |
|
207 | 200 | cmd.extend([convert(v) for v in args]) |
|
208 | 201 | ui.status((str(cmd)), "\n") |
|
209 | 202 |
General Comments 0
You need to be logged in to leave comments.
Login now