about summary refs log tree commit diff
path: root/convert.go
diff options
context:
space:
mode:
Diffstat (limited to 'convert.go')
-rw-r--r--convert.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/convert.go b/convert.go
index 5d6d276..b9b8458 100644
--- a/convert.go
+++ b/convert.go
@@ -15,7 +15,7 @@ func NewTLE(RawTLE string) (TLE, error) {
 
 	lineOne, err := parseLineOne(SplitTLE)
 	if err != nil {
-		fmt.Println(err)
+		return TLE{}, err
 	}
 
 	lineTwo, err := parseLineTwo(SplitTLE)