From 3e9038efcc2edbc9ff1fe78c13bbccbb0858431a Mon Sep 17 00:00:00 2001 From: Muhammad Zubair Date: Thu, 22 Jun 2023 21:31:00 +0500 Subject: [PATCH] feat: removed extra comma --- common/djangoapps/entitlements/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/entitlements/tasks.py b/common/djangoapps/entitlements/tasks.py index a3a57a571f..2f534b7a07 100644 --- a/common/djangoapps/entitlements/tasks.py +++ b/common/djangoapps/entitlements/tasks.py @@ -116,6 +116,6 @@ def expire_and_create_entitlements(self, entitlements, support_user): LOGGER.info('created new entitlement with id %d in a correspondence of above expired entitlement', new_entitlement.id) # lint-amnesty, pylint: disable=line-too-long except Exception as exc: - LOGGER.exception('Failed to expire entitlements that reached their expiration period',) # pylint: disable=broad-except + LOGGER.exception('Failed to expire entitlements that reached their expiration period') # pylint: disable=broad-except LOGGER.info('Successfully completed the task expire_and_create_entitlements after examining %d entries', entitlements.count()) # lint-amnesty, pylint: disable=line-too-long