~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/upgrade.py

  • Committer: Alexander Belchenko
  • Date: 2008-02-06 15:33:12 UTC
  • mto: This revision was merged to the branch mainline in revision 3231.
  • Revision ID: bialix@ukr.net-20080206153312-qycs7u05d7fjtwqq
Ian's review

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
 
69
69
    def _backup_control_dir(self):
70
70
        self.pb.note('making backup of tree history')
71
 
        self.transport.copy_tree('.bzr', 'backup.bzr')
72
 
        self.pb.note('%s.bzr has been backed up to %sbackup.bzr',
 
71
        self.transport.copy_tree('.bzr', '.bzr.backup')
 
72
        self.pb.note('%s.bzr has been backed up to %s.bzr.backup',
73
73
             self.transport.base,
74
74
             self.transport.base)
75
75
        self.pb.note('if conversion fails, you can move this directory back to .bzr')