From 0b8ae435f80d474f53b0de0101daec16a36296bb Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Sat, 2 Apr 2016 11:58:35 -0700 Subject: [PATCH] correct the justification of the text --- tldp/sources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tldp/sources.py b/tldp/sources.py index ee57f97..b64ddd2 100644 --- a/tldp/sources.py +++ b/tldp/sources.py @@ -216,7 +216,7 @@ class SourceDocument(object): print(' source file {}'.format(self.filename), file=file) for why, f in sorted(self.differing): fname = os.path.join(self.dirname, f) - print(' {:7} source {}'.format(why, fname), file=file) + print(' {:>7} source {}'.format(why, fname), file=file) if self.output: for f in sorted(self.output.missing): print(' missing output {}'.format(f), file=file)