From fd76b500725ea1e7dd148be6d687bcc92163adef Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Thu, 31 Oct 2024 09:55:57 -0400 Subject: [PATCH] chore: fix --- license_manager/apps/subscriptions/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/license_manager/apps/subscriptions/models.py b/license_manager/apps/subscriptions/models.py index 2129213b..abda1154 100644 --- a/license_manager/apps/subscriptions/models.py +++ b/license_manager/apps/subscriptions/models.py @@ -247,7 +247,7 @@ def custom_subscription_expiration_messaging(self): Returns the custom subscription expiration messaging associated with this customer agreement. """ try: - return self.custom_subscription_expiration_messaging + return self._custom_subscription_expiration_messaging except CustomSubscriptionExpirationMessaging.DoesNotExist: return None