/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: Martin Pool
  • Date: 2007-01-19 08:32:51 UTC
  • mto: (2220.2.19 tags)
  • mto: This revision was merged to the branch mainline in revision 2309.
  • Revision ID: mbp@sourcefrog.net-20070119083251-tr6zsf024kckx3lb
BetterĀ TagsNotSupportedĀ message

Show diffs side-by-side

added added

removed removed

Lines of Context:
1614
1614
 
1615
1615
class TagsNotSupported(BzrError):
1616
1616
 
1617
 
    _fmt = "Tags not supported by repository format %(repository_format)s"
1618
 
 
1619
 
    def __init__(self, repository_format):
1620
 
        self.repository_format = repository_format
1621
 
 
 
1617
    _fmt = "Tags not supported by repository %(repository)s"
 
1618
 
 
1619
    def __init__(self, repository):
 
1620
        self.repository = repository