~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-13 23:16:02 UTC
  • mfrom: (2978.2.2 unprintable.exception)
  • Revision ID: pqm@pqm.ubuntu.com-20071113231602-qy0rskctbikrs59x
fix formatting of ImmortalPendingDeletion error message.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1898
1898
 
1899
1899
class ImmortalPendingDeletion(BzrError):
1900
1900
 
1901
 
    _fmt = """Unable to delete transform temporary directory
1902
 
    %(pending_deletion)s.  Please examine %(pending_deletions)s to see if it
1903
 
    contains any files you wish to keep, and delete it when you are done."""
 
1901
    _fmt = ("Unable to delete transform temporary directory "
 
1902
    "%(pending_deletion)s.  Please examine %(pending_deletion)s to see if it "
 
1903
    "contains any files you wish to keep, and delete it when you are done.")
1904
1904
 
1905
1905
    def __init__(self, pending_deletion):
1906
1906
       BzrError.__init__(self, pending_deletion=pending_deletion)