fixed a bug in fetching tags

This commit is contained in:
Andrew Waage 2016-06-06 19:29:46 -07:00 committed by Olle Jonsson
parent 180b4cb6c9
commit 1763f9c8ea

View File

@ -11,7 +11,7 @@ module GitHubChangelogGenerator
fetch_tags_dates(all_tags) # Creates a Hash @tag_times_hash fetch_tags_dates(all_tags) # Creates a Hash @tag_times_hash
sorted_tags = sort_tags_by_date(included_tags) sorted_tags = sort_tags_by_date(included_tags)
@filtered_tags = get_filtered_tags(sorted_tags) @filtered_tags = get_filtered_tags(included_tags)
@tag_section_mapping = build_tag_section_mapping(@filtered_tags, sorted_tags) @tag_section_mapping = build_tag_section_mapping(@filtered_tags, sorted_tags)