Changeset 98539 in vbox for trunk/src/VBox/ValidationKit/testmanager/db
- Timestamp:
- Feb 10, 2023 6:19:00 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/db/partial-db-dump.py
r98103 r98539 265 265 try: 266 266 oZipFile = zipfile.ZipFile(self.oConfig.sFilename, 'r'); 267 except :268 print('error: Dump file "%s" cannot be opened! Use "-f <file>" to specify a file.' % (self.oConfig.sFilename,));267 except oXcpt: 268 print('error: Failed to open dump file "%s": %s' % (self.oConfig.sFilename, oXcpt)); 269 269 return 1; 270 270
Note:
See TracChangeset
for help on using the changeset viewer.