# HG changeset patch # User Francisco Figueirido # Date 1330661767 18000 # Node ID 6e423f7c784fc41e22d1fd4fa68680801f83cbd7 # Parent e5d3b0aa48e6ab79531204f61e25ee335b306df3 ancestor: fix incorrect reference to 'n2' diff -r e5d3b0aa48e6 -r 6e423f7c784f hglib/context.py --- a/hglib/context.py Tue Jan 17 17:15:47 2012 -0600 +++ b/hglib/context.py Thu Mar 01 23:16:07 2012 -0500 @@ -205,4 +205,4 @@ """ return the ancestor context of self and c2 """ - return changectx(self._repo, 'ancestor(%s, %s)' % (self, n2)) + return changectx(self._repo, 'ancestor(%s, %s)' % (self, c2))