Changeset 65828 in vbox for trunk/src/VBox/ValidationKit/common
- Timestamp:
- Feb 21, 2017 9:55:39 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 113573
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/common/webutils.py
r62484 r65828 168 168 oDst.close(); 169 169 oSrc.close(); 170 except Exception ,oXcpt:170 except Exception as oXcpt: 171 171 fnError('Error downloading "%s" to "%s": %s' % (sUrlFile, sDstFile, oXcpt)); 172 172 return False; … … 177 177 try: 178 178 utils.copyFileSimple(sSrcPath, sDstFile); 179 except Exception ,oXcpt:179 except Exception as oXcpt: 180 180 fnError('Error copying "%s" to "%s": %s' % (sSrcPath, sDstFile, oXcpt)); 181 181 return False;
Note:
See TracChangeset
for help on using the changeset viewer.