Hi Mike,

> Indeed, I was finally able to reproduce this behaviour in my local
> installation, so I should now be able to go about fixing it. In the
> meantime, here's the bug report to track it:
> <https://dev.agile42.com/ticket/931>

This will be fixed in the next release - in the meantime you should be
able to help yourself with the attached patch.

Please report back if it works.

Regards,
Martin

-- 
Follow Agilo on Twitter: http://twitter.com/agiloforscrum
-----
You received this message because you are subscribed to the Google
Groups "Agilo for Scrum" group. This group is moderated by agile42 GmbH 
http://www.agile42.com and is focused in supporting Agilo for Scrum users.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/agilo?hl=en
Index: agilo/utils/svn_hooks.py
===================================================================
--- agilo/utils/svn_hooks.py    (revision 2034)
+++ agilo/utils/svn_hooks.py    (working copy)
@@ -152,6 +152,9 @@
             for cmd in cmds:
                 cmd(ticket)
             self.tm.save(ticket, author=self.author, comment=self.message)
+            from trac.ticket.notification import TicketNotifyEmail
+            tn = TicketNotifyEmail(self.env)
+            tn.notify(ticket, newticket=False, modtime=ticket.time_changed)
         # We need to invalidate the chart cache here because some tickets may
         # have been closed through commit comments. Unfortunately there is 
         # no way to access the shared memory right now, see #565

Reply via email to