Merge "Remove white space between print and ()"

This commit is contained in:
Jenkins 2016-07-11 10:52:07 +00:00 committed by Gerrit Code Review
commit c4ff454b10

View File

@ -111,7 +111,7 @@ def main():
conn = libvirt.open("qemu:///system")
a = conn.defineXML(libvirt_template)
print ("Created machine %s with UUID %s" % (args.name, a.UUIDString()))
print("Created machine %s with UUID %s" % (args.name, a.UUIDString()))
if __name__ == '__main__':
main()