X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4b6cfd62cc3633ea652fb368047afb7312ac21e8..af4e1ed7dcda4b22eacae106ef53b1e0ba99ceb3:/src/search/management/commands/reindex.py diff --git a/src/search/management/commands/reindex.py b/src/search/management/commands/reindex.py index f982b2a3e..b8cb49c80 100755 --- a/src/search/management/commands/reindex.py +++ b/src/search/management/commands/reindex.py @@ -3,6 +3,8 @@ # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # import sys +import traceback + from django.core.management.base import BaseCommand from optparse import make_option @@ -74,8 +76,8 @@ class Command(BaseCommand): idx.index_book(b) idx.index.commit() books.pop(0) - except Exception, e: - print "Error occured: %s" % e + except: + traceback.print_exc() try: # we might not be able to rollback idx.index.rollback()