~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-18 22:17:03 UTC
  • mto: This revision was merged to the branch mainline in revision 1989.
  • Revision ID: john@arbash-meinel.com-20060818221703-958786fafe340fd9
2 changes to knits. Delay creating the .knit or .kndx file until we have actually tried to write data. Because of this, we must allow the Knit to create the prefix directories

Show diffs side-by-side

added added

removed removed

Lines of Context:
1490
1490
            prefixed=False,
1491
1491
            precious=True,
1492
1492
            versionedfile_class=KnitVersionedFile,
1493
 
            versionedfile_kwargs={'delta':False, 'factory':KnitPlainFactory()},
 
1493
            versionedfile_kwargs={'delta':False, 'factory':KnitPlainFactory(),
 
1494
                                  'create_parent_dir':True
 
1495
                                 },
1494
1496
            escaped=True,
1495
1497
            )
1496
1498
        return KnitRevisionStore(versioned_file_store)