Replaced single-quoted empty string with double quotes

This commit is contained in:
Enether 2017-06-03 18:39:48 +03:00
parent 3d27670053
commit 5bbeb93869

View File

@ -22,7 +22,7 @@ module GitHubChangelogGenerator
log += File.read(options[:base]) if File.file?(options[:base]) log += File.read(options[:base]) if File.file?(options[:base])
credit_line = "\n\n\\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*" credit_line = "\n\n\\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*"
log.gsub!(credit_line, '') # Remove old credit lines log.gsub!(credit_line, "") # Remove old credit lines
log += credit_line log += credit_line
@log = log @log = log