~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2006-10-29 01:44:29 UTC
  • mto: This revision was merged to the branch mainline in revision 2112.
  • Revision ID: mbp@sourcefrog.net-20061029014429-77497a4f933e6dfd
Fix some code which relies on assertions and breaks 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