~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: John Arbash Meinel
  • Date: 2008-05-05 20:42:38 UTC
  • mfrom: (3406 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3407.
  • Revision ID: john@arbash-meinel.com-20080505204238-598hf62krc3wwcin
merge bzr.dev, resolve NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
643
643
        This is looked up in the email controlfile for the branch.
644
644
        """
645
645
        try:
646
 
            return (self.branch.control_files.get_utf8("email") 
647
 
                    .read()
 
646
            return (self.branch.control_files._transport.get_bytes("email")
648
647
                    .decode(bzrlib.user_encoding)
649
648
                    .rstrip("\r\n"))
650
649
        except errors.NoSuchFile, e: