fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix celery conf sample
[wolnelektury.git]
/
apps
/
catalogue
/
tasks.py
diff --git
a/apps/catalogue/tasks.py
b/apps/catalogue/tasks.py
index
03f4a39
..
e7f7b29
100644
(file)
--- a/
apps/catalogue/tasks.py
+++ b/
apps/catalogue/tasks.py
@@
-24,10
+24,10
@@
def fix_tree_tags(book):
@task
@task
-def index_book(book_id, book_info=None):
+def index_book(book_id, book_info=None
, **kwargs
):
from catalogue.models import Book
try:
from catalogue.models import Book
try:
- return Book.objects.get(id=book_id).search_index(book_info)
+ return Book.objects.get(id=book_id).search_index(book_info
, **kwargs
)
except Exception, e:
print "Exception during index: %s" % e
print_exc()
except Exception, e:
print "Exception during index: %s" % e
print_exc()