diff --git a/home/views.py b/home/views.py
index fa17f8a..126f8f5 100644
--- a/home/views.py
+++ b/home/views.py
@@ -173,12 +173,15 @@ def accept_issue_request(request, issue_req_pk):
try:
EmailThread(template_path, email_context).start()
- message = f"Issue #{issue.number} of Project " \
+ message = f"Issue #{issue.number} of Project "\
+ f"" \
f"{issue.project.name} successfully assigned to {requester}"
return HttpResponse(message)
except mail.BadHeaderError:
- message = f"Issue #{issue.number} of Project " \
- f"{issue.project.name} successfully assigned to {requester}, but there was some problem sending" \
+ message = f"Issue #{issue.number} of Project "\
+ f"" \
+ f"{issue.project.name} successfully assigned to {requester}, "\
+ f"but there was some problem sending" \
f"email to the {requester}"
return HttpResponse(message)
else: