##// END OF EJS Templates
localrepo: remove unnecessary check of instance...
Sean Farley -
r19569:00140039 default
parent child Browse files
Show More
@@ -1457,14 +1457,8 b' class localrepository(object):'
1457 1457 del mf[fn]
1458 1458 return mf
1459 1459
1460 if isinstance(node1, context.changectx):
1461 ctx1 = node1
1462 else:
1463 ctx1 = self[node1]
1464 if isinstance(node2, context.changectx):
1465 ctx2 = node2
1466 else:
1467 ctx2 = self[node2]
1460 ctx1 = self[node1]
1461 ctx2 = self[node2]
1468 1462
1469 1463 working = ctx2.rev() is None
1470 1464 parentworking = working and ctx1 == self['.']
General Comments 0
You need to be logged in to leave comments. Login now