diff options
Diffstat (limited to 'convert.go')
-rw-r--r-- | convert.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/convert.go b/convert.go index 100538b..15c3962 100644 --- a/convert.go +++ b/convert.go @@ -39,7 +39,7 @@ func parseLineOne(SplitTLE []string) (LineOne, error) { // parse the line number LineOneLinenumber, err := strconv.Atoi(string(SplitTLE[1][0])) if err != nil { - return LineOne{}, fmt.Errorf("%s: %#v\n%v", "Could not parse the line number", SplitTLE[1][1], err) + return LineOne{}, fmt.Errorf("%#v\n%v", "Could not parse the line number", err) } // Parse the Satellite Number |