/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 breezy/errors.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2019-10-13 18:52:37 UTC
  • mfrom: (7385.2.3 init-shared-repo)
  • Revision ID: breezy.the.bot@gmail.com-20191013185237-dysn3in6iw908mse
Rename init-repo to init-shared-repo.

Merged from https://code.launchpad.net/~jelmer/brz/init-shared-repo/+merge/372116

Show diffs side-by-side

added added

removed removed

Lines of Context:
1872
1872
    """
1873
1873
 
1874
1874
 
 
1875
class SharedRepositoriesUnsupported(UnsupportedOperation):
 
1876
    _fmt = "Shared repositories are not supported by %(format)r."
 
1877
 
 
1878
    def __init__(self, format):
 
1879
        BzrError.__init__(self, format=format)
 
1880
 
 
1881
 
1875
1882
class GhostTagsNotSupported(BzrError):
1876
1883
 
1877
1884
    _fmt = "Ghost tags not supported by format %(format)r."