search for: 1f70f36

Displaying 1 result from an estimated 1 matches for "1f70f36".

Did you mean: 1170,36
2016 Jan 28
1
[PATCH] python: stop using parens-less print in tests
...= check_output (["ls", "-Z", filename]) -print "disk label = %s" % after +print ("disk label = %s" % after) if before != after: raise "disk label was changed unexpectedly" diff --git a/python/t/910-libvirt.py b/python/t/910-libvirt.py index 1f70f36..f6c99c9 100644 --- a/python/t/910-libvirt.py +++ b/python/t/910-libvirt.py @@ -28,14 +28,14 @@ guestsdir = os.environ['guestsdir'] try: import libvirt except: - print "could not import python-libvirt" + print ("could not import python-libvirt") exit (7...