diff --git a/README.rst b/README.rst index 2753df7..4026771 100644 --- a/README.rst +++ b/README.rst @@ -11,7 +11,7 @@ Installation To install **openedx-caliper-tracking** in your Open edX instance, please add the following line to your ``requirements file``. (For most Open edX installations it should be located at ``edx-platform/requirements/edx/base.txt``). :: - openedx-caliper-tracking==0.14.0 + openedx-caliper-tracking==0.14.1 For manual installation: :: diff --git a/openedx_caliper_tracking/tasks.py b/openedx_caliper_tracking/tasks.py index 5ce9d85..ddeeb5f 100644 --- a/openedx_caliper_tracking/tasks.py +++ b/openedx_caliper_tracking/tasks.py @@ -178,7 +178,7 @@ def send_system_recovery_email(self): data = { 'name': 'UCSD Support', 'body': 'System has been recovered. Now Caliper logs are being successfully delivered to kafka.' - '\n System URL = '.format(settings.LMS_ROOT_URL), + '\n System URL = {}'.format(settings.LMS_ROOT_URL), } subject = 'Success in logs delivery to Kafka' if send_notification(data, subject, DEFAULT_FROM_EMAIL, reporting_emails): diff --git a/setup.py b/setup.py index 3ae0a7e..7eaf3d0 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='openedx-caliper-tracking', - version='0.14.0', + version='0.14.1', packages=find_packages(), include_package_data=True, license='GPL 3.0',