/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: Marius Kruger
  • Date: 2009-02-15 23:29:29 UTC
  • mto: (4009.2.2 bzr.integration)
  • mto: This revision was merged to the branch mainline in revision 4011.
  • Revision ID: amanic@gmail.com-20090215232929-ncde407p5f2nyb7g
use brakets for long string wrapping

Show diffs side-by-side

added added

removed removed

Lines of Context:
2746
2746
 
2747
2747
class AlreadyWithTrees(BzrDirError):
2748
2748
 
2749
 
    _fmt = "Shared repository '%(display_url)s' already creates " \
2750
 
           "working trees."
 
2749
    _fmt = ("Shared repository '%(display_url)s' already creates "
 
2750
           "working trees.")
2751
2751
 
2752
2752
 
2753
2753
class AlreadyWithNoTrees(BzrDirError):
2754
2754
 
2755
 
    _fmt = "Shared repository '%(display_url)s' already doesn't create " \
2756
 
           "working trees."
 
2755
    _fmt = ("Shared repository '%(display_url)s' already doesn't create "
 
2756
           "working trees.")
2757
2757
 
2758
2758
 
2759
2759
class ReconfigurationNotSupported(BzrDirError):