# HG changeset patch
# User nishanth
# Date 1267354017 -19800
# Node ID 8c1ed28d04d28c5c95fa28d7e9d98da146d16a99
# Parent 047473d49b257706766f6b322350bd51abe996bb
fixed a_or_an in reject request.
diff -r 047473d49b25 -r 8c1ed28d04d2 taskapp/utilities/notification.py
--- a/taskapp/utilities/notification.py Sun Feb 28 16:09:42 2010 +0530
+++ b/taskapp/utilities/notification.py Sun Feb 28 16:16:57 2010 +0530
@@ -82,7 +82,7 @@
notification.message = "%s has accepted request made by %s asking him to act as %s %s for the website.
"%(user_url, requested_by_url, a_or_an, role_rights)
else:
notification.sub = "Rejected your request to act as %s"%role_rights
- notification.message = "%s has rejected your request asking him to act as a %s.
"%(user_url, role_rights)
+ notification.message = "%s has rejected your request asking him to act as %s %s.
"%(user_url, a_or_an, role_rights)
if remarks:
notification.message += "Remarks: %s
"%remarks