From 3cb3584bb9fb5d95c9daf200aeedfa3bb642da58 Mon Sep 17 00:00:00 2001 From: Andrew Waage Date: Thu, 19 May 2016 23:49:52 -0700 Subject: [PATCH] reverting the old fetcher where I changed to string --- lib/github_changelog_generator/fetcher.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/github_changelog_generator/fetcher.rb b/lib/github_changelog_generator/fetcher.rb index ff8cf62..e1181bc 100644 --- a/lib/github_changelog_generator/fetcher.rb +++ b/lib/github_changelog_generator/fetcher.rb @@ -220,7 +220,7 @@ Make sure, that you push tags to remote repo via 'git push --tags'" # Fetch commit for specified event # @return [Hash] def fetch_commit(event) - @github.git_data.commits.get @options[:user], @options[:project], event['commit_id'] + @github.git_data.commits.get @options[:user], @options[:project], event[:commit_id] end end end