Remove white space between print and ()

TrivialFix

Change-Id: I0f691bbd30329266bc90bb64881a122f0384636b
This commit is contained in:
yuyafei 2016-07-08 18:51:57 +08:00
parent 22aba527fb
commit 32ac108e48

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()