~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mail_client.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-10-01 07:56:03 UTC
  • mfrom: (3224.5.40 faster-startup)
  • Revision ID: pqm@pqm.ubuntu.com-20081001075603-s9nynw8y85fmrprj
Reduce startup time by a small amount. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
191
191
        :return:    encoded string if u is unicode, u itself otherwise.
192
192
        """
193
193
        if isinstance(u, unicode):
194
 
            return u.encode(bzrlib.user_encoding, 'replace')
 
194
            return u.encode(osutils.get_user_encoding(), 'replace')
195
195
        return u
196
196
 
197
197
    def _encode_path(self, path, kind):
205
205
        """
206
206
        if isinstance(path, unicode):
207
207
            try:
208
 
                return path.encode(bzrlib.user_encoding)
 
208
                return path.encode(osutils.get_user_encoding())
209
209
            except UnicodeEncodeError:
210
210
                raise errors.UnableEncodePath(path, kind)
211
211
        return path