/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-05-17 08:50:40 UTC
  • mfrom: (1704.2.18 bzr.mbp.integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060517085040-ee6e33957c557fba
(mbp) merge 0.8 fixes; fix #32587

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
class InvalidRevisionId(BzrNewError):
135
135
    """Invalid revision-id {%(revision_id)s} in %(branch)s"""
136
136
    def __init__(self, revision_id, branch):
 
137
        # branch can be any string or object with __str__ defined
137
138
        BzrNewError.__init__(self)
138
139
        self.revision_id = revision_id
139
140
        self.branch = branch