~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Robert Collins
  • Date: 2005-08-25 12:46:42 UTC
  • mfrom: (1116)
  • mto: (974.1.50) (1185.1.10) (1092.3.1)
  • mto: This revision was merged to the branch mainline in revision 1139.
  • Revision ID: robertc@robertcollins.net-20050825124642-45ed1cd74db10370
merge from mpool

Show diffs side-by-side

added added

removed removed

Lines of Context:
824
824
            count = 0
825
825
        self.append_revision(*revision_ids)
826
826
        ## note("Added %d revisions." % count)
 
827
        pb.clear()
827
828
 
828
 
        
829
829
    def install_revisions(self, other, revision_ids, pb):
830
830
        if hasattr(other.revision_store, "prefetch"):
831
831
            other.revision_store.prefetch(revision_ids)
862
862
                    
863
863
        count, cp_fail = self.text_store.copy_multi(other.text_store, 
864
864
                                                    needed_texts)
865
 
        print "Added %d texts." % count 
 
865
        #print "Added %d texts." % count 
866
866
        inventory_ids = [ f.inventory_id for f in revisions ]
867
867
        count, cp_fail = self.inventory_store.copy_multi(other.inventory_store, 
868
868
                                                         inventory_ids)
869
 
        print "Added %d inventories." % count 
 
869
        #print "Added %d inventories." % count 
870
870
        revision_ids = [ f.revision_id for f in revisions]
871
871
 
872
872
        count, cp_fail = self.revision_store.copy_multi(other.revision_store,