summaryrefslogtreecommitdiffstats
path: root/lib/git/log.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git/log.rb')
-rw-r--r--lib/git/log.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/git/log.rb b/lib/git/log.rb
index c91538d..9437ea6 100644
--- a/lib/git/log.rb
+++ b/lib/git/log.rb
@@ -84,9 +84,9 @@ module Git
# actually run the 'git log' command
def run_log
- log = @base.lib.log_commits(:count => @count, :object => @object,
+ log = @base.lib.full_log_commits(:count => @count, :object => @object,
:path_limiter => @path, :since => @since, :between => @between)
- @commits = log.map { |l| Git::Object::Commit.new(@base, l) }
+ @commits = log.map { |c| Git::Object::Commit.new(@base, c['sha'], c) }
end
end