D3160: convert: remove unused/unnecessary variable "parentctx"
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Fri Apr 6 18:50:52 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG65705fbc9c37: convert: remove unused/unnecessary variable "parentctx" (authored by martinvonz, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D3160?vs=7787&id=7796
REVISION DETAIL
https://phab.mercurial-scm.org/D3160
AFFECTED FILES
hgext/convert/hg.py
CHANGE DETAILS
diff --git a/hgext/convert/hg.py b/hgext/convert/hg.py
--- a/hgext/convert/hg.py
+++ b/hgext/convert/hg.py
@@ -364,10 +364,8 @@
def puttags(self, tags):
try:
- parentctx = self.repo[self.tagsbranch]
- tagparent = parentctx.node()
+ tagparent = self.repo[self.tagsbranch].node()
except error.RepoError:
- parentctx = None
tagparent = nodemod.nullid
oldlines = set()
To: martinvonz, #hg-reviewers, indygreg
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list