Fixed problem with diagnostic output.

This commit is contained in:
Vinay Sajip 2012-03-03 16:20:37 +00:00
parent 0d3a003f24
commit d263d18553
1 changed files with 2 additions and 1 deletions

View File

@ -3682,7 +3682,8 @@ class TimedRotatingFileHandlerTest(BaseFileTest):
print('The only matching files are: %s' % files, file=sys.stderr)
for f in files:
print('Contents of %s:' % f)
with open(f, 'r') as tf:
path = os.path.join(dn, f)
with open(path, 'r') as tf:
print(tf.read())
self.assertTrue(found, msg=msg)