Changeset 69445 in vbox for trunk/src/VBox/ValidationKit/tests/api/tdAppliance1.py
- Timestamp:
- Oct 27, 2017 4:21:29 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/api/tdAppliance1.py
r69111 r69445 130 130 except: 131 131 return reporter.errorXcpt('IVirtualBox::createAppliance failed'); 132 print "oAppliance=%s" % (oAppliance,)132 print("oAppliance=%s" % (oAppliance,)); 133 133 134 134 try: … … 175 175 # 176 176 try: 177 os.mkdir(sTmpDir, 0 755);177 os.mkdir(sTmpDir, 0x1ed); # 0755 = 0x1ed 178 178 oTarFile = tarfile.open(sOva, 'r:*'); 179 179 oTarFile.extractall(sTmpDir); … … 189 189 except: 190 190 return reporter.errorXcpt('IVirtualBox::createAppliance failed (#2)'); 191 print "oAppliance2=%s" % (oAppliance2,)191 print("oAppliance2=%s" % (oAppliance2,)); 192 192 193 193 try:
Note:
See TracChangeset
for help on using the changeset viewer.