~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/apps/__init__.py

  • Committer: Matt Nordhoff
  • Date: 2009-05-18 05:16:38 UTC
  • Revision ID: mnordhoff@mattnordhoff.com-20090518051638-s4m1u3hd19ijtygv
Fix typo.

(At least it didn't actually break anything.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""WSGI applications for serving Bazaar branches."""
 
2
 
 
3
import os
 
4
 
 
5
from paste import urlparser, fileapp
 
6
 
 
7
static = os.path.join(
 
8
    os.path.dirname(os.path.dirname(__file__)), 'static')
 
9
 
 
10
static_app = urlparser.make_static(None, static)
 
11
 
 
12
favicon_app = fileapp.FileApp(os.path.join(static, 'images', 'favicon.ico'))
 
13
robots_app = fileapp.FileApp(os.path.join(static, 'robots.txt'))