~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/upgrade.py

  • Committer: Aaron Bentley
  • Date: 2010-05-10 11:34:20 UTC
  • mfrom: (5218 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5221.
  • Revision ID: aaron@aaronbentley.com-20100510113420-toh2d5yioobb5uq1
Merged bzr.dev into transform-commit-full.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    def convert(self):
48
48
        try:
49
49
            branch = self.bzrdir.open_branch()
50
 
            if branch.bzrdir.root_transport.base != \
51
 
                self.bzrdir.root_transport.base:
 
50
            if branch.user_url != self.bzrdir.user_url:
52
51
                ui.ui_factory.note("This is a checkout. The branch (%s) needs to be "
53
52
                             "upgraded separately." %
54
 
                             branch.bzrdir.root_transport.base)
 
53
                             branch.user_url)
55
54
            del branch
56
55
        except (errors.NotBranchError, errors.IncompatibleRepositories):
57
56
            # might not be a format we can open without upgrading; see e.g.