a few more python3-compatible print (#1840)

This commit is contained in:
Frédéric Chapoton 2016-05-31 21:20:22 +02:00 committed by Markus Unterwaditzer
parent 83ae787f97
commit e4c712ffd2
2 changed files with 5 additions and 3 deletions

View file

@ -19,6 +19,7 @@
:copyright: (c) Copyright 2015 by Armin Ronacher.
:license: see LICENSE for more details.
"""
from __future__ import print_function
import re
import os
import inspect
@ -59,7 +60,7 @@ def make_diff(filename, old, new):
posixpath.normpath(posixpath.join('a', filename)),
posixpath.normpath(posixpath.join('b', filename)),
lineterm=''):
print line
print(line)
def looks_like_teardown_function(node):