From: Jan Szejko Date: Thu, 22 Feb 2018 09:16:58 +0000 (+0100) Subject: clearer info in checkintegrity X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/0528c9e30aac17fe6d7726485136c4995c05b1ec?ds=sidebyside;hp=fdb20cafa639be8f55b9b4555c80a253fa9de533 clearer info in checkintegrity --- 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