~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Jonathan Lange
  • Date: 2007-04-13 05:10:07 UTC
  • mto: This revision was merged to the branch mainline in revision 2446.
  • Revision ID: jml@canonical.com-20070413051007-cq318kt5uj59k1ty
Some stylistic cleanups

Show diffs side-by-side

added added

removed removed

Lines of Context:
2050
2050
 
2051
2051
class MalformedBugIdentifier(BzrError):
2052
2052
 
2053
 
    _fmt = "Bug identifier %(bug_id)s is malformed: %(reason)s"
 
2053
    _fmt = "Did not understand bug identifier %(bug_id)s: %(reason)s"
2054
2054
 
2055
2055
    def __init__(self, bug_id, reason):
2056
2056
        self.bug_id = bug_id