search for: 1909a37

Displaying 1 result from an estimated 1 matches for "1909a37".

Did you mean: 10937
2016 Jan 28
1
[PATCH] python: stop using parens-less print in tests
...), use this form everywhere so the tests can run fine with Python 3. --- python/t/820-rhbz912499.py | 18 +++++++++--------- python/t/910-libvirt.py | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/python/t/820-rhbz912499.py b/python/t/820-rhbz912499.py index de6d1d3..1909a37 100644 --- a/python/t/820-rhbz912499.py +++ b/python/t/820-rhbz912499.py @@ -30,28 +30,28 @@ import guestfs try: import libvirt except: - print "skipping test: could not import python-libvirt" + print ("skipping test: could not import python-libvirt") exit (77)...