##// END OF EJS Templates
workingfilectx: inherit from basefilectx instead of filectx
Sean Farley -
r19612:df54cc67 default
parent child Browse files
Show More
@@ -1186,7 +1186,7 b' class workingctx(basectx):'
1186 def dirs(self):
1186 def dirs(self):
1187 return self._repo.dirstate.dirs()
1187 return self._repo.dirstate.dirs()
1188
1188
1189 class workingfilectx(filectx):
1189 class workingfilectx(basefilectx):
1190 """A workingfilectx object makes access to data related to a particular
1190 """A workingfilectx object makes access to data related to a particular
1191 file in the working directory convenient."""
1191 file in the working directory convenient."""
1192 def __init__(self, repo, path, filelog=None, workingctx=None):
1192 def __init__(self, repo, path, filelog=None, workingctx=None):
General Comments 0
You need to be logged in to leave comments. Login now