ParserFile: Config format allows empty lines

- defined as: lines that consist only of whitespace
This commit is contained in:
Olle Jonsson
2016-03-19 17:12:30 +01:00
parent 068af037f5
commit 0fccc4396f
2 changed files with 3 additions and 3 deletions
@@ -52,7 +52,7 @@ module GitHubChangelogGenerator
# Returns true if the line starts with a pound sign or a semi-colon.
def non_configuration_line?(line)
line =~ /^[\#;]/
line =~ /^[\#;]/ || line =~ /^[\s]+$/
end
# Returns a the option name as a symbol and its string value sans newlines.