##// END OF EJS Templates
context: fix wrong indentation from renaming method
Sean Farley -
r21663:8d9449ea default
parent child Browse files
Show More
@@ -107,7 +107,7 b' class basectx(object):'
107 return s
107 return s
108
108
109 def _buildstatus(self, other, s, match, listignored, listclean,
109 def _buildstatus(self, other, s, match, listignored, listclean,
110 listunknown):
110 listunknown):
111 """build a status with respect to another context"""
111 """build a status with respect to another context"""
112 mf1 = other._manifestmatches(match, s)
112 mf1 = other._manifestmatches(match, s)
113 mf2 = self._manifestmatches(match, s)
113 mf2 = self._manifestmatches(match, s)
@@ -303,7 +303,7 b' class basectx(object):'
303 listunknown)
303 listunknown)
304 r = ctx2._prestatus(ctx1, r, match, listignored, listclean, listunknown)
304 r = ctx2._prestatus(ctx1, r, match, listignored, listclean, listunknown)
305 r = ctx2._buildstatus(ctx1, r, match, listignored, listclean,
305 r = ctx2._buildstatus(ctx1, r, match, listignored, listclean,
306 listunknown)
306 listunknown)
307 r = ctx2._poststatus(ctx1, r, match, listignored, listclean,
307 r = ctx2._poststatus(ctx1, r, match, listignored, listclean,
308 listunknown)
308 listunknown)
309
309
@@ -1402,7 +1402,7 b' class workingctx(committablectx):'
1402 return [modified, added, removed, deleted, unknown, ignored, clean]
1402 return [modified, added, removed, deleted, unknown, ignored, clean]
1403
1403
1404 def _buildstatus(self, other, s, match, listignored, listclean,
1404 def _buildstatus(self, other, s, match, listignored, listclean,
1405 listunknown):
1405 listunknown):
1406 """build a status with respect to another context
1406 """build a status with respect to another context
1407
1407
1408 This includes logic for maintaining the fast path of status when
1408 This includes logic for maintaining the fast path of status when
General Comments 0
You need to be logged in to leave comments. Login now