Skip to content

Commit

Permalink
Merge pull request #56 from ucsd-ets/danial/fix-system-url-in-system-…
Browse files Browse the repository at this point in the history
…recovery-mail

Fix system URL in recovery email
  • Loading branch information
danialmalik authored Jul 29, 2020
2 parents af1ae78 + 3a75b1c commit b97de21
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:
::
Expand Down
2 changes: 1 addition & 1 deletion openedx_caliper_tracking/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit b97de21

Please sign in to comment.