~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Alexander Belchenko
  • Date: 2007-02-17 07:11:47 UTC
  • mto: This revision was merged to the branch mainline in revision 2304.
  • Revision ID: bialix@ukr.net-20070217071147-pc4zm6d4rc8zqv77
Bugfix #85599: ``bzr init`` works with unicode argument LOCATION

Show diffs side-by-side

added added

removed removed

Lines of Context:
1233
1233
            existing_bzrdir = bzrdir.BzrDir.open(location)
1234
1234
        except errors.NotBranchError:
1235
1235
            # really a NotBzrDir error...
1236
 
            branch = bzrdir.BzrDir.create_branch_convenience(location,
 
1236
            branch = bzrdir.BzrDir.create_branch_convenience(to_transport.base,
1237
1237
                                                             format=format)
1238
1238
        else:
1239
1239
            from bzrlib.transport.local import LocalTransport