fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
slugify->slughifi, **kwargs in BookMedia.save
[wolnelektury.git]
/
apps
/
lesmianator
/
views.py
diff --git
a/apps/lesmianator/views.py
b/apps/lesmianator/views.py
index
8936772
..
2d6d53f
100644
(file)
--- 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
from django.template import RequestContext
from random import randint
-import os.path
-
def _choose_word(word):
try:
def _choose_word(word):
try:
@@
-21,8
+19,10
@@
def _choose_word(word):
return ''
# load dictionary on start, it won't change
return ''
# load dictionary on start, it won't change
+from django.conf import settings
+
try:
try:
- f = open(
os.path.join(os.path.dirname(__file__), 'dictionary.p')
)
+ f = open(
settings.LESMIANATOR_PICKLE
)
_dictionary = cPickle.load(f)
except:
_dictionary = {}
_dictionary = cPickle.load(f)
except:
_dictionary = {}