##// END OF EJS Templates
histedit: drop the 'nodetoverify' local variable...
Pierre-Yves David -
r29876:034d38b5 default
parent child Browse files
Show More
@@ -1385,9 +1385,8 b' def verifyactions(actions, state, ctxs):'
1385 raise error.ParseError(_('unknown constraint "%s"') %
1385 raise error.ParseError(_('unknown constraint "%s"') %
1386 constraint)
1386 constraint)
1387
1387
1388 nodetoverify = action.node
1388 if action.node is not None:
1389 if nodetoverify is not None:
1389 ha = node.hex(action.node)
1390 ha = node.hex(nodetoverify)
1391 if _constraints.noother in constraints and ha not in expected:
1390 if _constraints.noother in constraints and ha not in expected:
1392 raise error.ParseError(
1391 raise error.ParseError(
1393 _('%s "%s" changeset was not a candidate')
1392 _('%s "%s" changeset was not a candidate')
General Comments 0
You need to be logged in to leave comments. Login now