X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/e1227f49d096b4d1163d0543030c01940329c0bd..88e53c6fbcddfb8e33dbf61a0123e3f9154cc0d5:/apps/lesmianator/views.py diff --git a/apps/lesmianator/views.py b/apps/lesmianator/views.py index 893677290..2d6d53fc5 100644 --- a/apps/lesmianator/views.py +++ b/apps/lesmianator/views.py @@ -5,8 +5,6 @@ from django.shortcuts import render_to_response from django.template import RequestContext from random import randint -import os.path - def _choose_word(word): try: @@ -21,8 +19,10 @@ def _choose_word(word): return '' # load dictionary on start, it won't change +from django.conf import settings + try: - f = open(os.path.join(os.path.dirname(__file__), 'dictionary.p')) + f = open(settings.LESMIANATOR_PICKLE) _dictionary = cPickle.load(f) except: _dictionary = {}