cmd/tai64nlocal/main.go | 2 ++ diff --git a/cmd/tai64nlocal/main.go b/cmd/tai64nlocal/main.go index f4095e7f4cd751ed557c7f4247e9353e74daabc1b6b758c15714d8c512efa7dc..6bcf1c2fcc562730ada301f35d913097a506b79d098fbbd759c08c74712a4e7f 100644 --- a/cmd/tai64nlocal/main.go +++ b/cmd/tai64nlocal/main.go @@ -44,10 +44,12 @@ } s = scanner.Text() if s[0] != '@' { os.Stdout.WriteString(s + "\n") + continue } sep = strings.IndexByte(s, byte(' ')) if sep == -1 { os.Stdout.WriteString(s + "\n") + continue } t, err = tai64n.Decode(s[1:sep]) if err != nil {