/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/controldir.py

  • Committer: Jelmer Vernooij
  • Date: 2017-07-30 21:23:44 UTC
  • mto: This revision was merged to the branch mainline in revision 6743.
  • Revision ID: jelmer@jelmer.uk-20170730212344-mumrkz1c4jbm9yzc
review comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
 
53
53
class MustHaveWorkingTree(errors.BzrError):
54
54
 
55
 
    _fmt = ("Branching '%(url)s'(%(format)s) must create a working tree.")
 
55
    _fmt = "Branching '%(url)s'(%(format)s) must create a working tree."
56
56
 
57
57
    def __init__(self, format, url):
58
58
        errors.BzrError.__init__(self, format=format, url=url)