X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/5cab5828042f66577b45661f37a8ac7dc5e50ae6..1c07de888eadc1333264d627ffdff1066a5f01b9:/apps/lesmianator/views.py diff --git a/apps/lesmianator/views.py b/apps/lesmianator/views.py index 2761ae5ab..2d6d53fc5 100644 --- a/apps/lesmianator/views.py +++ b/apps/lesmianator/views.py @@ -1,12 +1,10 @@ # Create your views here. -import pickle +import cPickle 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,9 +19,11 @@ 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')) - _dictionary = pickle.load(f) + f = open(settings.LESMIANATOR_PICKLE) + _dictionary = cPickle.load(f) except: _dictionary = {}