~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/upgrade.py

  • Committer: Martin Pool
  • Date: 2010-04-21 11:27:04 UTC
  • mto: This revision was merged to the branch mainline in revision 5189.
  • Revision ID: mbp@canonical.com-20100421112704-zijso22b6pdevrxy
Simplify various code to use user_url

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.