~ubuntu-branches/ubuntu/gutsy/bzr/gutsy

« back to all changes in this revision

Viewing changes to bzrlib/merge.py

  • Committer: Bazaar Package Importer
  • Author(s): Etienne Goyer
  • Date: 2007-04-27 17:53:49 UTC
  • mfrom: (1.1.23 upstream)
  • Revision ID: james.westby@ubuntu.com-20070427175349-rvowqx994rfuikuu
Tags: 0.16~rc1-0ubuntu1
New upstream development release 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1013
1013
                     branch.get_revision_tree(base_revision))'
1014
1014
        """
1015
1015
    if this_tree is None:
1016
 
        warnings.warn("bzrlib.merge.merge_inner requires a this_tree parameter as of "
1017
 
             "bzrlib version 0.8.",
1018
 
             DeprecationWarning,
1019
 
             stacklevel=2)
1020
 
        this_tree = this_branch.bzrdir.open_workingtree()
 
1016
        raise BzrError("bzrlib.merge.merge_inner requires a this_tree "
 
1017
            "parameter as of bzrlib version 0.8.")
1021
1018
    merger = Merger(this_branch, other_tree, base_tree, this_tree=this_tree,
1022
1019
                    pb=pb, change_reporter=change_reporter)
1023
1020
    merger.backup_files = backup_files