report the output directory first

This commit is contained in:
Martin A. Brown 2016-03-10 11:55:55 -08:00
parent 57c7eb2b06
commit 5f6ff9ca3d
1 changed files with 1 additions and 1 deletions

View File

@ -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)