commit: fd651083f2521d0ba3af9dbf50862ed5a9f19f63
parent: 178d67193143491f6839df9a4f83ff5640b1286a
Author: asciimoo <asciimoo@gmail.com>
Date: Fri, 14 Feb 2014 16:16:20 +0100
[fix] PYTHONPATH settings
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/searx/webapp.py b/searx/webapp.py
@@ -17,6 +17,11 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >.
(C) 2013- by Adam Tauber, <asciimoo@gmail.com>
'''
+if __name__ == '__main__':
+ from sys import path
+ from os.path import realpath, dirname
+ path.append(realpath(dirname(realpath(__file__))+'/../'))
+
import json
import cStringIO
import os