/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: 2008-07-02 02:04:17 UTC
  • mfrom: (3515.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080702020417-2gnc111mzyl1xusr
Rule-based preferences (Ian Clatworthy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2760
2760
    def __init__(self, host, port, orig_error):
2761
2761
        BzrError.__init__(self, host=host, port=port,
2762
2762
            orig_error=orig_error[1])
 
2763
 
 
2764
 
 
2765
class UnknownRules(BzrError):
 
2766
 
 
2767
    _fmt = ('Unknown rules detected: %(unknowns_str)s.')
 
2768
 
 
2769
    def __init__(self, unknowns):
 
2770
        BzrError.__init__(self, unknowns_str=", ".join(unknowns))