hgext/evolve.py
changeset 1736 c9a79b432907
parent 1732 f4047fba5e90
parent 1735 8f902ec9ed9a
child 1738 cb5edd4b160c
equal deleted inserted replaced
1734:14ace97ffed8 1736:c9a79b432907
  2006             raise
  2006             raise
  2007     # Create the new commit context
  2007     # Create the new commit context
  2008     repo.ui.status(_('computing new diff\n'))
  2008     repo.ui.status(_('computing new diff\n'))
  2009     files = set()
  2009     files = set()
  2010     copied = copies.pathcopies(prec, bumped)
  2010     copied = copies.pathcopies(prec, bumped)
  2011     precmanifest = prec.manifest()
  2011     precmanifest = prec.manifest().copy()
  2012     # 3.3.2 needs a list.
  2012     # 3.3.2 needs a list.
  2013     # future 3.4 don't detect the size change during iteration
  2013     # future 3.4 don't detect the size change during iteration
  2014     # this is fishy
  2014     # this is fishy
  2015     for key, val in list(bumped.manifest().iteritems()):
  2015     for key, val in list(bumped.manifest().iteritems()):
  2016         precvalue = precmanifest.get(key, None)
  2016         precvalue = precmanifest.get(key, None)