We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88500f5 commit c810faeCopy full SHA for c810fae
scripts/flaskext_tester.py
@@ -112,7 +112,7 @@
112
113
114
def log(msg, *args):
115
- print '[EXTTEST]', msg % args
+ print('[EXTTEST] ' + (msg % args))
116
117
118
class TestResult(object):
@@ -302,7 +302,7 @@ def main():
302
if args.browse:
303
import webbrowser
304
webbrowser.open('file:///' + filename.lstrip('/'))
305
- print 'Results written to', filename
+ print('Results written to {}'.format(filename))
306
307
308
if __name__ == '__main__':
0 commit comments