commit/galaxy-central: greg: Bug fix for change set c996393163e1.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/0966a9170e68/ changeset: 0966a9170e68 user: greg date: 2011-06-23 21:39:57 summary: Bug fix for change set c996393163e1. affected #: 1 file (28 bytes) --- a/lib/galaxy/webapps/community/controllers/repository.py Thu Jun 23 15:32:07 2011 -0400 +++ b/lib/galaxy/webapps/community/controllers/repository.py Thu Jun 23 15:39:57 2011 -0400 @@ -117,7 +117,7 @@ model.User.table.c.email == column_filter ) ) class EmailAlertsColumn( grids.TextColumn ): def get_value( self, trans, grid, repository ): - if trans.user.email in from_json_string( repository.email_alerts ): + if repository.email_alerts and trans.user.email in from_json_string( repository.email_alerts ): return 'yes' return '' # Grid definition Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket