/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: Daniel Watkins
  • Date: 2009-02-09 23:34:21 UTC
  • mto: (3999.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 4000.
  • Revision ID: daniel@daniel-watkins.co.uk-20090209233421-xv1oyk5pzgqj931u
Made error message slightly more friendly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2936
2936
 
2937
2937
class InvalidShelfId(BzrError):
2938
2938
 
2939
 
    _fmt = '"%(invalid_id)s" is not a valid shelf id.'
 
2939
    _fmt = '"%(invalid_id)s" is not a valid shelf id, try a number instead.'
2940
2940
 
2941
2941
    def __init__(self, invalid_id):
2942
2942
        BzrError.__init__(self, invalid_id=invalid_id)