From 5f6ff9ca3dc6f456263ca5199163d7e36118dc81 Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Thu, 10 Mar 2016 11:55:55 -0800 Subject: [PATCH] report the output directory first --- tldp/sources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tldp/sources.py b/tldp/sources.py index 47e1e8f..6db5b67 100644 --- a/tldp/sources.py +++ b/tldp/sources.py @@ -204,10 +204,10 @@ class SourceDocument(object): print(outstr, file=file) if verbose: print(' doctype {}'.format(self.doctype), file=file) - print(' source file {}'.format(self.filename), file=file) if self.output: print(' output dir {}'.format(self.output.dirname), file=file) + print(' source file {}'.format(self.filename), file=file) for f in sorted(self.newer): fname = os.path.join(self.dirname, f) print(' newer source {}'.format(fname), file=file)