Changeset 47981 in vbox for trunk/src/VBox/Frontends/VBoxShell
- Timestamp:
- Aug 22, 2013 12:47:00 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r47979 r47981 205 205 206 206 def printErr(_ctx, e): 207 print colored(str(e), 'red') 207 oVBoxMgr = _ctx['global']; 208 if oVBoxMgr.errIsOurXcptKind(e): 209 print colored('%s: %s' % (oVBoxMgr.errToString(e), oVBoxMgr.errGetMessage(e)), 'red'); 210 else: 211 print colored(str(e), 'red') 208 212 209 213 def reportError(_ctx, progress):
Note:
See TracChangeset
for help on using the changeset viewer.