Removed message outputted when skipping non-xml files in importbooks command.
[wolnelektury.git] / apps / catalogue / management / commands / importbooks.py
index c0a5df1..239da77 100644 (file)
@@ -1,9 +1,10 @@
 import os
 import sys
+from optparse import make_option
 
 from django.core.management.base import BaseCommand
 from django.core.management.color import color_style
-from optparse import make_option
+from django.core.files import File
 
 from catalogue.models import Book
 
@@ -38,7 +39,6 @@ class Command(BaseCommand):
         for dir_name in directories:
             if not os.path.isdir(dir_name):
                 print self.style.ERROR("%s: Not a directory. Skipping." % dir_name)
-                files_skipped += 1
             else:
                 for file_name in os.listdir(dir_name):
                     file_path = os.path.join(dir_name, file_name)
@@ -46,8 +46,6 @@ class Command(BaseCommand):
                     
                     # Skip files that are not XML files
                     if not ext == '.xml':
-                        print self.style.NOTICE("%s: Not an XML file. Skipping." % file_path)
-                        files_skipped += 1
                         continue
                     
                     if verbose > 0: