~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Jelmer Vernooij
  • Date: 2011-09-07 11:51:20 UTC
  • mfrom: (6123.1.9 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6130.
  • Revision ID: jelmer@samba.org-20110907115120-ugiagn73ovvd7ylb
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2349
2349
    """
2350
2350
 
2351
2351
 
 
2352
class GhostTagsNotSupported(BzrError):
 
2353
 
 
2354
    _fmt = "Ghost tags not supported by format %(format)r."
 
2355
 
 
2356
    def __init__(self, format):
 
2357
        self.format = format
 
2358
 
 
2359
 
2352
2360
class BinaryFile(BzrError):
2353
2361
 
2354
2362
    _fmt = "File is binary but should be text."