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)