diff --git a/progit/lib/model.py b/progit/lib/model.py index e81c83f..907acf8 100644 --- a/progit/lib/model.py +++ b/progit/lib/model.py @@ -349,7 +349,7 @@ class Issue(BASE): ''' Return a unique reprensetation of the issue as string that can be used when sending emails. ''' - return '%s-ticket-%s@progit' % (self.project.name, self.id) + return '%s-ticket-%s@progit' % (self.project.name, self.uid) @property def tags_text(self):