Fix whitespace

This commit is contained in:
TobyLL 2017-10-19 15:52:06 +01:00
parent 9dba182e51
commit 9e3dde8ec7
1 changed files with 2 additions and 2 deletions

View File

@ -302,8 +302,8 @@ func readLinesFromFile(filename string) ([]string, error) {
if line == "" {
continue
}
// strip comments
if strings.HasPrefix(line, "#") {
// strip comments
if strings.HasPrefix(line, "#") {
continue
}
lines = append(lines, line)