~mwhudson/loggerhead/directory-listing-improvements

« back to all changes in this revision

Viewing changes to loggerhead/apps/filesystem.py

  • Committer: Martin Albisetti
  • Date: 2008-07-26 19:21:15 UTC
  • mfrom: (185.1.1 tmp-dir-name)
  • Revision ID: argentina@gmail.com-20080726192115-d8pof2or1omzpegr
Give the temp SQL cache directory a more descriptive name (Matt Nordhoff)

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
from loggerhead.apps.branch import BranchWSGIApp
14
14
from loggerhead.apps import favicon_app, static_app
15
15
 
16
 
sql_dir = tempfile.mkdtemp()
 
16
sql_dir = tempfile.mkdtemp(prefix='loggerhead-cache-')
17
17
 
18
18
 
19
19
class DirectoryListing(object):