~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Jelmer Vernooij
  • Date: 2006-07-05 19:56:19 UTC
  • mto: This revision was merged to the branch mainline in revision 1849.
  • Revision ID: jelmer@samba.org-20060705195619-4c91058b3d8197e2
Fix handling of `shared' parameter in BzrDir.create_repository().

Show diffs side-by-side

added added

removed removed

Lines of Context:
301
301
        that child class desires.
302
302
        """
303
303
        bzrdir = BzrDir.create(base)
304
 
        return bzrdir.create_repository()
 
304
        return bzrdir.create_repository(shared)
305
305
 
306
306
    @staticmethod
307
307
    def create_standalone_workingtree(base):