From fd651083f2521d0ba3af9dbf50862ed5a9f19f63 Mon Sep 17 00:00:00 2001 From: asciimoo Date: Fri, 14 Feb 2014 16:16:20 +0100 Subject: [PATCH] [fix] PYTHONPATH settings --- searx/webapp.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/searx/webapp.py b/searx/webapp.py index 7477e172..eb4240f4 100644 --- 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, ''' +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