/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/errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-08-29 20:29:23 UTC
  • mfrom: (1711.9.8 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060829202923-fb8340be7d4adadb
(spiv) Refactor sftp vendor support

Show diffs side-by-side

added added

removed removed

Lines of Context:
1111
1111
 
1112
1112
    def __init__(self):
1113
1113
        BzrNewError.__init__(self)    
 
1114
 
 
1115
 
 
1116
class UnknownSSH(BzrNewError):
 
1117
    """Unrecognised value for BZR_SSH environment variable: %(vendor)s"""
 
1118
 
 
1119
    def __init__(self, vendor):
 
1120
        BzrNewError.__init__(self)
 
1121
        self.vendor = vendor
 
1122