##// END OF EJS Templates
localrepo: remove unnecessary check of instance...
Sean Farley -
r19569:00140039 default
parent child Browse files
Show More
@@ -1457,13 +1457,7 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 1460 ctx1 = self[node1]
1464 if isinstance(node2, context.changectx):
1465 ctx2 = node2
1466 else:
1467 1461 ctx2 = self[node2]
1468 1462
1469 1463 working = ctx2.rev() is None
General Comments 0
You need to be logged in to leave comments. Login now