Avoid having this line crammed onto the end of a line of pytest output

This commit is contained in:
Jean-Paul Calderone 2019-02-15 13:37:27 -05:00
parent 845e1e7a4a
commit 7226fedd9c

View File

@ -56,7 +56,7 @@ def temp_dir(request):
"""
tmp = mkdtemp(prefix="tahoe")
if request.config.getoption('keep'):
print("Will retain tempdir '{}'".format(tmp))
print("\nWill retain tempdir '{}'".format(tmp))
# I'm leaving this in and always calling it so that the tempdir
# path is (also) printed out near the end of the run