From 32adacd4ef05abdf959cc3c0fc9b1d23a2361f77 Mon Sep 17 00:00:00 2001 From: Justin Date: Sun, 28 Jul 2019 12:25:26 -0400 Subject: [PATCH] Fix Longitude Typo --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 8612a2b..54c21b9 100644 --- a/app.py +++ b/app.py @@ -194,7 +194,7 @@ def iss_pass(): if lon: lon = safe_float(lon, (-180.0, 180.0)) if not lon: - return {"message": "failure", "reason": "Longitue must be number between -180.0 and 180.0"}, 400 + return {"message": "failure", "reason": "Longitude must be number between -180.0 and 180.0"}, 400 else: return {"message": "failure", "reason": "Longitude must be specified"}, 400