~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Lukáš Lalinsky
  • Date: 2007-08-09 22:30:26 UTC
  • mto: (2681.1.17 send-bundle)
  • mto: This revision was merged to the branch mainline in revision 2736.
  • Revision ID: lalinsky@gmail.com-20070809223026-c1xray4fmphhkr39
Support for Evolution mail client.

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
                None : mail_client.Editor,
153
153
                'editor': mail_client.Editor,
154
154
                'thunderbird': mail_client.Thunderbird,
 
155
                'evolution': mail_client.Evolution,
155
156
            }[selected_client]
156
157
        except KeyError:
157
158
            raise errors.UnknownMailClient(selected_client)