[[[ Fixed problem in svnlook.py where diffing a versioned file produced an 'list index out of range' error in DiffEditor.apply_textdelta(). * tools/examples/svnlook.py (DiffEditor.apply_textdelta): Removed third argument in _do_diff() call since it was unnecessary and referenced an invalid list index. ]]] Index: tools/examples/svnlook.py =================================================================== --- tools/examples/svnlook.py (revision 32366) +++ tools/examples/svnlook.py (working copy) @@ -303,7 +303,7 @@ def apply_textdelta(self, file_baton, base_checksum): if file_baton[2] is not None: - self._do_diff(file_baton[2], file_baton[2], file_baton[3]) + self._do_diff(file_baton[2], file_baton[2]) return None def _basename(path):