http://bugs.grommit.com/show_bug.cgi?id=290





------- Comment #3 from David.Marker at Sun.com  2007-08-05 18:28 PDT -------
The problem is that _fix_delete() exits early because d.rtxt == d.atxt ==
['\n']

The solution is to always have delete records start out with rtxt = []
The best place to fix that is in _model.py _get_sequence()

<             atxt = self.text['merge'][ab:ae + 1]
<             rtxt = self.text[name][rb:re + 1]
---
>             atxt = self.text['merge'][ab:ae + 1]
>             if op == 'delete': rtxt = []
>             else: rtxt = self.text[name][rb:re + 1]


-- 
Configure bugmail: http://bugs.grommit.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

Reply via email to