~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Aaron Bentley
  • Date: 2007-01-15 13:10:20 UTC
  • mto: (2255.6.1 dirstate)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: aaron.bentley@utoronto.ca-20070115131020-wr397y8izr6i2epm
Work on checking out by-reference trees

Show diffs side-by-side

added added

removed removed

Lines of Context:
529
529
 
530
530
class BadFileKindError(BzrError):
531
531
 
532
 
    _fmt = "Cannot operate on %(filename)s of unsupported kind %(kind)s"
 
532
    _fmt = 'Cannot operate on "%(filename)s" of unsupported kind "%(kind)s"'
 
533
 
 
534
    def __init__(self, filename, kind):
 
535
        BzrError.__init__(self, filename=filename, kind=kind)
533
536
 
534
537
 
535
538
class ForbiddenControlFileError(BzrError):