~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/annotate.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-04 15:25:07 UTC
  • mfrom: (4056.2.5 authors)
  • Revision ID: pqm@pqm.ubuntu.com-20090304152507-pbmk3iuhsrsu22it
(James) Support multiple authors for revisions.

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: