Skip to content

Commit

Permalink
Add project name to note emails (fixes getsentryGH-1080)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Dec 16, 2013
1 parent dab852e commit 1132feb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sentry/models/activity.py
Expand Up @@ -121,7 +121,8 @@ def send_notification(self):

author = self.user.first_name or self.user.username

subject = '%s: %s' % (
subject = '[%s] %s: %s' % (
self.project.name,
author,
self.data['text'].splitlines()[0][:64])

Expand Down

0 comments on commit 1132feb

Please sign in to comment.