~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: 2010-06-04 10:10:50 UTC
  • mfrom: (5268.3.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20100604101050-5iiiag2n2soczg1l
(mbp) remove-tree now refuses to run without --force if there are shelved
 changes. (#586639) (Matt Giuca)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2850
2850
        BzrError.__init__(self, tree=tree, display_url=display_url, more=more)
2851
2851
 
2852
2852
 
 
2853
class ShelvedChanges(UncommittedChanges):
 
2854
 
 
2855
    _fmt = ('Working tree "%(display_url)s" has shelved changes'
 
2856
            ' (See bzr shelve --list).%(more)s')
 
2857
 
 
2858
 
2853
2859
class MissingTemplateVariable(BzrError):
2854
2860
 
2855
2861
    _fmt = 'Variable {%(name)s} is not available.'