context.py: filectxs was using a keyword arg, add it to filectx

This commit is contained in:
Benoit Boissinot 2006-07-16 16:39:03 +02:00
parent d9acb13f0c
commit fe197b5f4f

View File

@ -51,9 +51,11 @@ class changectx(object):
node, flag = self._repo.manifest.find(self.changeset()[0], path)
return node
def filectx(self, path):
def filectx(self, path, fileid=None):
"""get a file context from this changeset"""
return filectx(self._repo, path, fileid=self.filenode(path))
if fileid is None:
fileid = self.filenode(path)
return filectx(self._repo, path, fileid=fileid)
def filectxs(self):
"""generate a file context for each file in this changeset's