~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_repository_vf/test_write_group.py

  • Committer: Ross Lagerwall
  • Date: 2012-08-07 06:32:51 UTC
  • mto: (6437.63.5 2.5)
  • mto: This revision was merged to the branch mainline in revision 6558.
  • Revision ID: rosslagerwall@gmail.com-20120807063251-x9p03ghg2ws8oqjc
Add bzrlib/locale to .bzrignore

bzrlib/locale is generated with ./setup.py build_mo which is in turn called
by ./setup.py build

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
from bzrlib import (
22
22
    branch,
23
 
    controldir,
 
23
    bzrdir,
24
24
    errors,
25
25
    memorytree,
26
26
    remote,
87
87
            # repository, but the default format is unstackble.  So explicitly
88
88
            # make a stackable real repository and use that.
89
89
            repo = self.make_repository(relpath, format='1.9')
90
 
            dir = controldir.ControlDir.open(self.get_url(relpath))
91
 
            repo = dir.open_repository()
 
90
            repo = bzrdir.BzrDir.open(self.get_url(relpath)).open_repository()
92
91
        else:
93
92
            repo = self.make_repository(relpath)
94
93
        if not repo._format.supports_external_lookups: