1.1 --- a/eskp.py Tue May 06 16:22:40 2014 +0200
1.2 +++ b/eskp.py Tue May 06 16:32:30 2014 +0200
1.3 @@ -14,6 +14,9 @@
1.4 LANGUAGE_SELECTED = "de"
1.5 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
1.6
1.7 +# We need the path of this file to find templates to translate
1.8 +ESKP_PATH = os.path.dirname(os.path.abspath(__file__))
1.9 +
1.10 app = Flask(__name__)
1.11 babel = Babel(app)
1.12
1.13 @@ -22,6 +25,7 @@
1.14
1.15 def get_content(filename, overrides=None):
1.16 content = u""
1.17 + filename = os.path.join(ESKP_PATH, filename)
1.18 if os.path.isfile(filename):
1.19 with codecs.open(filename, 'r', 'utf-8') as f:
1.20 rst_data = f.read()