~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store/compressed_text.py

  • Committer: John Arbash Meinel
  • Date: 2005-09-29 21:03:18 UTC
  • mto: (1393.1.12)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: john@arbash-meinel.com-20050929210318-2c2f76c0331aa888
Fixing typos, updating stores, getting tests to pass.

Show diffs side-by-side

added added

removed removed

Lines of Context:
250
250
    """
251
251
    def __init__(self):
252
252
        from transport import transport
253
 
        super(ScratchCompressedTextStore, self).__init__(transport(tempfile.mkdtemp()))
 
253
        t = transport(tempfile.mkdtemp())
 
254
        super(ScratchCompressedTextStore, self).__init__(t)
254
255
 
255
256
    def __del__(self):
256
257
        self._transport.delete_multi(self._transport.list_dir('.'))