From 294f580f042be51150ef89e72243cd470f80796d Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 9 Jul 2018 15:47:46 -0400 Subject: [PATCH] Re-wrap the error message emitted by checkIncludes.py --- scripts/maint/checkIncludes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/maint/checkIncludes.py b/scripts/maint/checkIncludes.py index 5cf7ead47e..eb25cb2096 100755 --- a/scripts/maint/checkIncludes.py +++ b/scripts/maint/checkIncludes.py @@ -81,6 +81,6 @@ for dirpath, dirnames, fnames in os.walk("src"): if trouble: err( -"""To change which includes are allowed in a C file, edit the {} files in its -enclosing directory.""".format(RULES_FNAME)) +"""To change which includes are allowed in a C file, edit the {} +files in its enclosing directory.""".format(RULES_FNAME)) sys.exit(1)