1
0
Fork 0
mirror of https://github.com/sileht/bird-lg.git synced 2024-09-20 22:14:43 +02:00
bird-lg/lg.wsgi

9 lines
142 B
Plaintext
Raw Normal View History

2012-01-20 00:12:19 +01:00
import sys
2012-08-21 09:27:52 +02:00
import os
2012-08-21 11:54:52 +02:00
sitepath = os.path.realpath(os.path.dirname(__file__))
2012-08-21 09:27:52 +02:00
sys.path.insert(0, sitepath)
2012-01-20 00:12:19 +01:00
from lg import app as application