Fix incorrect log message in PayPal config loader #7

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