Fix incorrect log message in PayPal config loader #7

Open
betawurst wants to merge 1 commits from fix/paypal-log-message into main
Showing only changes of commit 25d1c70a0b - Show all commits
+1 -1
View File
@@ -44,7 +44,7 @@ class ConfigurationService:
secret=self._config["paypal"]["secret"] secret=self._config["paypal"]["secret"]
) )
except KeyError: except KeyError:
logger.fatal("Error loading DatabaseConfiguration, exiting...") logger.fatal("Error loading PayPalConfiguration, exiting...")
sys.exit(1) sys.exit(1)
def get_ticket_info(self) -> tuple[TicketInfo, ...]: def get_ticket_info(self) -> tuple[TicketInfo, ...]: