diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.go b/src/main.go index e9c844c..b6e4c23 100644 --- a/src/main.go +++ b/src/main.go @@ -22,7 +22,7 @@ func readfile(path string) []string { tmp := reg.Split(string(dat), -1); for i := range tmp{ - if tmp[i] != "" { + if tmp[i] != "" && tmp[i][0] != '#' { raw = append(raw, tmp[i]); } }; |