/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: Aaron Bentley
  • Date: 2007-12-19 06:04:19 UTC
  • mfrom: (3127 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3128.
  • Revision ID: aaron.bentley@utoronto.ca-20071219060419-afwva4q14cjlzfta
Merge with bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
653
653
 
654
654
class FileInWrongBranch(BzrError):
655
655
 
656
 
    _fmt = 'File "%(path)s" in not in branch %(branch_base)s.'
 
656
    _fmt = 'File "%(path)s" is not in branch %(branch_base)s.'
657
657
 
658
658
    def __init__(self, branch, path):
659
659
        BzrError.__init__(self)
2488
2488
        BzrError.__init__(self, tree=tree, display_url=display_url)
2489
2489
 
2490
2490
 
 
2491
class MissingTemplateVariable(BzrError):
 
2492
 
 
2493
    _fmt = 'Variable {%(name)s} is not available.'
 
2494
 
 
2495
    def __init__(self, name):
 
2496
        self.name = name
 
2497
 
 
2498
 
2491
2499
class UnableCreateSymlink(BzrError):
2492
2500
 
2493
2501
    _fmt = 'Unable to create symlink %(path_str)son this platform'