~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/annotate.py

  • Committer: Martin Pool
  • Date: 2009-03-05 02:15:46 UTC
  • mfrom: (4078 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4081.
  • Revision ID: mbp@sourcefrog.net-20090305021546-catovbht4xnwypto
merge news

Show diffs side-by-side

added added

removed removed

Lines of Context:
231
231
                                     time.gmtime(rev.timestamp + tz))
232
232
            # a lazy way to get something like the email address
233
233
            # TODO: Get real email address
234
 
            author = rev.get_apparent_author()
 
234
            author = rev.get_apparent_authors()[0]
235
235
            try:
236
236
                author = extract_email_address(author)
237
237
            except errors.NoEmailInUsername: