hgext/remotefilelog/remotefilectx.py
changeset 41360 784ab13b340f
parent 41140 92a5fb73b3d5
child 41695 e37bd7ccfee3
equal deleted inserted replaced
41359:431cf2c8c839 41360:784ab13b340f
   450         return []
   450         return []
   451 
   451 
   452 class remoteworkingfilectx(context.workingfilectx, remotefilectx):
   452 class remoteworkingfilectx(context.workingfilectx, remotefilectx):
   453     def __init__(self, repo, path, filelog=None, workingctx=None):
   453     def __init__(self, repo, path, filelog=None, workingctx=None):
   454         self._ancestormap = None
   454         self._ancestormap = None
   455         return super(remoteworkingfilectx, self).__init__(repo, path,
   455         super(remoteworkingfilectx, self).__init__(repo, path, filelog,
   456             filelog, workingctx)
   456                                                    workingctx)
   457 
   457 
   458     def parents(self):
   458     def parents(self):
   459         return remotefilectx.parents(self)
   459         return remotefilectx.parents(self)
   460 
   460 
   461     def ancestormap(self):
   461     def ancestormap(self):