~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to repofmt.py

  • Committer: John Arbash Meinel
  • Date: 2009-03-02 20:33:13 UTC
  • mto: (0.17.30 trunk)
  • mto: This revision was merged to the branch mainline in revision 4280.
  • Revision ID: john@arbash-meinel.com-20090302203313-xqcyvxsq3ytky60y
Properly name the file XXX.autopack rather than XXXautopack

Show diffs side-by-side

added added

removed removed

Lines of Context:
360
360
                raise errors.BzrError('call to %s.pack() while another pack is'
361
361
                                      ' being written.'
362
362
                                      % (self.__class__.__name__,))
363
 
            new_pack = self.pack_factory(self, 'autopack',
 
363
            new_pack = self.pack_factory(self, '.autopack',
364
364
                file_mode=self.repo.bzrdir._get_file_mode())
365
365
            new_pack.set_write_cache_size(1024*1024)
366
366
            # TODO: A better alternative is to probably use Packer.open_pack(), and