~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Vincent Ladeuil
  • Date: 2010-08-20 09:52:25 UTC
  • mto: This revision was merged to the branch mainline in revision 5385.
  • Revision ID: v.ladeuil+lp@free.fr-20100820095225-wijo4emfgvtmu2ku
BzrRemoveChangedFilesError is deprecated in 2.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1984
1984
        "Use --keep to not delete them, or --force to delete them regardless.")
1985
1985
 
1986
1986
    def __init__(self, tree_delta):
1987
 
        symbol_versioning.warn(symbol_versioning.deprecated_in((2, 2, 0)) %
 
1987
        symbol_versioning.warn(symbol_versioning.deprecated_in((2, 3, 0)) %
1988
1988
            "BzrRemoveChangedFilesError", DeprecationWarning, stacklevel=2)
1989
1989
        BzrError.__init__(self)
1990
1990
        self.changes_as_text = tree_delta.get_changes_as_text()