# HG changeset patch # User nishanth # Date 1267343863 -19800 # Node ID bd65e2c9a7b45e828683e70b56dc1d4c486108e1 # Parent 2489392ffb5672b8f91d990bca09ca541b926f87 fixed the a_or_an bug . diff -r 2489392ffb56 -r bd65e2c9a7b4 taskapp/utilities/notification.py --- a/taskapp/utilities/notification.py Sun Feb 28 13:25:24 2010 +0530 +++ b/taskapp/utilities/notification.py Sun Feb 28 13:27:43 2010 +0530 @@ -75,10 +75,11 @@ requested_by_url = '%s'%(requested_by.id, requested_by.username) role_rights = dict(RIGHTS_CHOICES)[role] role_learn_url = "/about/%s"%role_rights.lower() + a_or_an = "an" if role_rights == "AD" else "a" if reply: notification.sub = "New %s for the site"%role_rights - notification.message = "%s has accepted request made by %s asking him to act as a %s for the website.
"%(user_url, requested_by_url, role_rights) + 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.
"%(new_mentor_url, task_url)