Skip to content

Commit

Permalink
Fix function tag value formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Jan 19, 2014
1 parent 5697c4b commit 51d21e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sentry/models/tagvalue.py
Expand Up @@ -46,7 +46,7 @@ def get_label(self):
if self.key == 'sentry:user':
return self.data.get('email') or self.value
elif self.key == 'sentry:function':
return '%s in %s' (self.data['function'], self.data['filename'])
return '%s in %s' % (self.data['function'], self.data['filename'])
elif self.key == 'sentry:filename':
return self.data['filename']
return self.value
Expand Down

0 comments on commit 51d21e6

Please sign in to comment.