Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mozilla/tuxedo
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonsavage committed Sep 21, 2012
2 parents 0effd80 + b59eb4a commit dec52d2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions wsgi/tuxedo.wsgi
@@ -1,5 +1,16 @@
import os
import site
import sys

current_dir = os.path.abspath(os.path.dirname(__file__))

ALLDIRS = []

ALLDIRS.append(os.path.abspath('%s/../vendor/lib/python' % current_dir))
ALLDIRS.append(os.path.abspath('%s/../vendor/src' % current_dir))

for item in ALLDIRS:
sys.path.append(item)

import django.core.handlers.wsgi

Expand Down

0 comments on commit dec52d2

Please sign in to comment.