From 7da2f9bdca113a0a1260f5e248ddb23f78cf7700 Mon Sep 17 00:00:00 2001 From: bllfr0g Date: Mon, 15 Jul 2019 15:28:05 -0700 Subject: [PATCH] Fix for Southwest API change --- southwest/southwest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/southwest/southwest.py b/southwest/southwest.py index 5a375a3..83da655 100644 --- a/southwest/southwest.py +++ b/southwest/southwest.py @@ -68,7 +68,7 @@ class Reservation(): def lookup_existing_reservation(self): # Find our existing record - return self.load_json_page(self.with_suffix("mobile-misc/v1/mobile-misc/page/view-reservation/")) + return self.load_json_page(self.with_suffix("mobile-air-booking/v1/mobile-air-booking/page/view-reservation/")) def get_checkin_data(self): return self.load_json_page(self.with_suffix("mobile-air-operations/v1/mobile-air-operations/page/check-in/"))