# HG changeset patch # User Pierre-Yves David # Date 1497609423 -7200 # Node ID 7d96082193628e068b6035ce701031e749f3ff3e # Parent 3bcc9d3bac335cd376e27717136507928b5fb2dd obsfate: rename 'successorsset' to 'sset' in the loop The old name make it too close to 'successorssets', and the shorter name is not ambiguous in the context anyway. diff -r 3bcc9d3bac33 -r 7d9608219362 hgext3rd/evolve/templatekw.py --- a/hgext3rd/evolve/templatekw.py Fri Jun 16 17:42:28 2017 +0200 +++ b/hgext3rd/evolve/templatekw.py Fri Jun 16 12:37:03 2017 +0200 @@ -140,8 +140,8 @@ successorssets = [[]] values = [] - for successorset in successorssets: - raw = obshistory._preparesuccessorset(successorset, pathcache) + for sset in successorssets: + raw = obshistory._preparesuccessorset(sset, pathcache) # As we can't do something like # "{join(map(nodeshort, successors), ', '}" in template, manually