~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/knit.py

  • Committer: John Arbash Meinel
  • Date: 2006-09-06 21:56:58 UTC
  • mto: This revision was merged to the branch mainline in revision 1989.
  • Revision ID: john@arbash-meinel.com-20060906215658-422a15bab820945c
Small cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
1329
1329
    """Contents of the knit data file"""
1330
1330
 
1331
1331
    def __init__(self, transport, filename, mode, create=False, file_mode=None,
1332
 
                 dir_mode=None,
1333
 
                 create_parent_dir=False, delay_create=False):
 
1332
                 create_parent_dir=False, delay_create=False,
 
1333
                 dir_mode=None):
1334
1334
        _KnitComponentFile.__init__(self, transport, filename, mode,
1335
1335
                                    file_mode=file_mode,
1336
 
                                    dir_mode=dir_mode,
1337
 
                                    create_parent_dir=create_parent_dir)
 
1336
                                    create_parent_dir=create_parent_dir,
 
1337
                                    dir_mode=dir_mode)
1338
1338
        self._checked = False
1339
1339
        # TODO: jam 20060713 conceptually, this could spill to disk
1340
1340
        #       if the cached size gets larger than a certain amount