D2961: locate: avoid using "rev" variable name for nodeid
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Wed Mar 28 23:25:30 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGeb4a23382e18: locate: avoid using "rev" variable name for nodeid (authored by martinvonz, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2961?vs=7353&id=7356
REVISION DETAIL
https://phab.mercurial-scm.org/D2961
AFFECTED FILES
mercurial/commands.py
CHANGE DETAILS
diff --git a/mercurial/commands.py b/mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -3258,10 +3258,9 @@
end = '\0'
else:
end = '\n'
- rev = scmutil.revsingle(repo, opts.get('rev'), None).node()
+ ctx = scmutil.revsingle(repo, opts.get('rev'), None)
ret = 1
- ctx = repo[rev]
m = scmutil.match(ctx, pats, opts, default='relglob',
badfn=lambda x, y: False)
To: martinvonz, #hg-reviewers, indygreg
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list