X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ae60b2a3949e96357477cc04f90fd0873cee8a92..0528c9e30aac17fe6d7726485136c4995c05b1ec:/src/catalogue/management/commands/checkintegrity.py?ds=sidebyside diff --git a/src/catalogue/management/commands/checkintegrity.py b/src/catalogue/management/commands/checkintegrity.py index 6d8a9559a..6f090bb8c 100644 --- a/src/catalogue/management/commands/checkintegrity.py +++ b/src/catalogue/management/commands/checkintegrity.py @@ -38,8 +38,10 @@ class Command(BaseCommand): if should_be != is_now: if verbose: print "ERROR! Wrong children for book:", book.slug - print "Is: ", is_now - print "Should be:", should_be + # print "Is: ", is_now + # print "Should be:", should_be + from difflib import ndiff + print '\n'.join(ndiff(is_now, should_be)) print "To resolve: republish parent book." print