From ea607ae8add31f3a804fe38b64dc3318983fd72b Mon Sep 17 00:00:00 2001 From: tashey33 Date: Sun, 16 Feb 2020 22:56:12 -0700 Subject: [PATCH] add line to print the person's info being checked in (#52) Co-authored-by: Joseph Pintozzi --- checkin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/checkin.py b/checkin.py index 4d6186f..05a1ca2 100755 --- a/checkin.py +++ b/checkin.py @@ -94,6 +94,7 @@ if __name__ == '__main__': verbose = arguments['--verbose'] try: + print("Attempting to check in {} {}. Confirmation: {}\n".format(first_name, last_name, reservation_number)) auto_checkin(reservation_number, first_name, last_name, verbose) except KeyboardInterrupt: print("Ctrl+C detected, canceling checkin")