index: Add NULL stats argument to git_index_read_tree call.

This catches up with changes in libgit2:

  commit 4bf5115642b64851f9a32a8157010b588bf44103
  Author: Ben Straub <bstraub@github.com>
  Date:   Mon Jul 30 14:52:46 2012 -0700

    Enable stats on git_index_read_tree.

    Replace with the contents of
    git_index_read_tree_with_stats() and improve
    documentation comments.
This commit is contained in:
W. Trevor King 2012-09-13 13:53:37 -04:00
parent 91e211d4f9
commit 8e19102815

@ -331,7 +331,7 @@ Index_read_tree(Index *self, PyObject *value)
if (err < 0)
return Error_set(err);
err = git_index_read_tree(self->index, tree);
err = git_index_read_tree(self->index, tree, NULL);
if (err < 0)
return Error_set(err);