~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: 2006-11-02 07:29:02 UTC
  • mfrom: (2090.2.4 dash-o)
  • Revision ID: pqm@pqm.ubuntu.com-20061102072902-8b3d43db5d36ec5b
(mbp) #45205 fix errors when running under python -O

Show diffs side-by-side

added added

removed removed

Lines of Context:
208
208
        self.base = base
209
209
 
210
210
 
 
211
class WorkingTreeAlreadyPopulated(BzrNewError):
 
212
    """Working tree already populated in %(base)s"""
 
213
 
 
214
    is_user_error = False
 
215
 
 
216
 
211
217
class NotBuilding(BzrNewError):
212
218
    """Not currently building a tree."""
213
219