##// END OF EJS Templates
convert: remove unused/unnecessary variable "parentctx"...
Martin von Zweigbergk -
r37412:65705fbc default
parent child Browse files
Show More
@@ -364,10 +364,8 b' class mercurial_sink(common.converter_si'
364
364
365 def puttags(self, tags):
365 def puttags(self, tags):
366 try:
366 try:
367 parentctx = self.repo[self.tagsbranch]
367 tagparent = self.repo[self.tagsbranch].node()
368 tagparent = parentctx.node()
369 except error.RepoError:
368 except error.RepoError:
370 parentctx = None
371 tagparent = nodemod.nullid
369 tagparent = nodemod.nullid
372
370
373 oldlines = set()
371 oldlines = set()
General Comments 0
You need to be logged in to leave comments. Login now