diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-13 01:51:00 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-13 01:51:00 +0200 |
commit | a6ea9e8dd2eda48c8405f609e0fb444d3717af53 (patch) | |
tree | a2815bca686619d10151a531cddf5a7fdadedffa /commit.go | |
parent | ae999ede139f5fa5601ffb7c55979608b112d274 (diff) | |
download | go-git-a6ea9e8dd2eda48c8405f609e0fb444d3717af53.tar.gz |
Repository and Remote API changes
Diffstat (limited to 'commit.go')
-rw-r--r-- | commit.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ func (c *Commit) Tree() *Tree { // Parents return a CommitIter to the parent Commits func (c *Commit) Parents() *CommitIter { - return NewCommitIter(c.r, core.NewObjectLookupIter(c.r.Storage, c.parents)) + return NewCommitIter(c.r, core.NewObjectLookupIter(c.r.os, c.parents)) } // NumParents returns the number of parents in a commit. |