mercurial/simplemerge.py
changeset 16683 525fdb738975
parent 15782 7de7630053cb
child 16687 e34106fa0dc3
--- a/mercurial/simplemerge.py	Fri May 11 18:41:04 2012 +0200
+++ b/mercurial/simplemerge.py	Sat May 12 15:54:54 2012 +0200
@@ -222,7 +222,8 @@
         # section a[0:ia] has been disposed of, etc
         iz = ia = ib = 0
 
-        for zmatch, zend, amatch, aend, bmatch, bend in self.find_sync_regions():
+        for region in self.find_sync_regions():
+            zmatch, zend, amatch, aend, bmatch, bend = region
             #print 'match base [%d:%d]' % (zmatch, zend)
 
             matchlen = zend - zmatch