# HG changeset patch # User Lennard de Rijk # Date 1232582856 0 # Node ID 6ba5bf4b3fea90ff251f02c30f98c9970bcb1587 # Parent 445f3e8a44d96b571aa7608f54653847ac127c15 Fixed wrong conditional in soc/views/models/club_app.py. Notifications will now be send again. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed diff -r 445f3e8a44d9 -r 6ba5bf4b3fea app/soc/views/models/club_app.py --- a/app/soc/views/models/club_app.py Thu Jan 22 00:03:28 2009 +0000 +++ b/app/soc/views/models/club_app.py Thu Jan 22 00:07:36 2009 +0000 @@ -259,7 +259,7 @@ self._logic.updateModelProperties(entity, fields) - if status_value is 'accepted': + if status_value == 'accepted': # the application has been accepted send out a notification notifications.sendNewClubNotification(entity)