/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/mail_client.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-04-15 17:26:01 UTC
  • mfrom: (4292.1.1 mutt-send)
  • Revision ID: pqm@pqm.ubuntu.com-20090415172601-buxpv8kc1qf9uork
(Jelmer) Use -- before recipient address in mutt command-line.

Show diffs side-by-side

added added

removed removed

Lines of Context:
267
267
            message_options.extend(['-a',
268
268
                self._encode_path(attach_path, 'attachment')])
269
269
        if to is not None:
270
 
            message_options.append(self._encode_safe(to))
 
270
            message_options.extend(['--', self._encode_safe(to)])
271
271
        return message_options
272
272
mail_client_registry.register('mutt', Mutt,
273
273
                              help=Mutt.__doc__)