comparison mercurial/manifest.py @ 39987:e22016e83c1e

manifest: remove an unused variable caught by pyflakes Uses of todel were removed in D4843 (19103e68a698). This patch will make buildbots green again. Differential Revision: https://phab.mercurial-scm.org/D4847
author Pulkit Goyal <pulkit@yandex-team.ru>
date Wed, 03 Oct 2018 13:55:51 +0300
parents 731961d972ba
children 906c95073ff7
comparison
equal deleted inserted replaced
39986:138e2d6d3b53 39987:e22016e83c1e
717 return None 717 return None
718 if visit == 'all' or visit == 'this': 718 if visit == 'all' or visit == 'this':
719 self._loadalllazy() 719 self._loadalllazy()
720 return None 720 return None
721 721
722 todel = []
723 loadlazy = self._loadlazy 722 loadlazy = self._loadlazy
724 for k in visit: 723 for k in visit:
725 loadlazy(k + '/') 724 loadlazy(k + '/')
726 return visit 725 return visit
727 726