X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/8559c95597de98e8f6c580e97224ed3ecc9dc5c0..f714cce8fd2f04693a118b05c0f9432a70d1bef7:/catalogue/management/commands/importbooks.py?ds=sidebyside diff --git a/catalogue/management/commands/importbooks.py b/catalogue/management/commands/importbooks.py index 24908fe44..3b8a56463 100644 --- a/catalogue/management/commands/importbooks.py +++ b/catalogue/management/commands/importbooks.py @@ -1,11 +1,11 @@ -from django.core.management.base import BaseCommand, CommandError +import os + +from django.core.management.base import BaseCommand from django.core.management.color import color_style from optparse import make_option -import sys -import os +from slughifi import slughifi +import dcparser -from catalogue.lib.dcparser import parse -from catalogue.lib.slughifi import slughifi from catalogue.models import Book, Tag @@ -43,7 +43,7 @@ class Command(BaseCommand): if verbosity > 1: print "Parsing '%s'" % file_path - book_info = parse(file_path) + book_info = dcparser.parse(file_path) book = Book(title=book_info.title, slug=slughifi(book_info.title)) book.save()