Changeset 97673 in vbox for trunk/src/VBox/ValidationKit/testboxscript
- Timestamp:
- Nov 24, 2022 11:46:15 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154728
- Location:
- trunk/src/VBox/ValidationKit/testboxscript
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testboxscript/testboxcommand.py
r96407 r97673 286 286 try: 287 287 sCmdName = oResponse.getStringChecked(constants.tbresp.ALL_PARAM_RESULT); 288 except Exception as oXcpt:288 except: 289 289 oConnection.close(); 290 290 return False; -
trunk/src/VBox/ValidationKit/testboxscript/testboxconnection.py
r96407 r97673 93 93 else: 94 94 # Special case, dummy response object. 95 self._dResponse = dict();95 self._dResponse = {}; 96 96 # Done. 97 97 … … 230 230 """ 231 231 if dParams is None: 232 dParams = dict();232 dParams = {}; 233 233 dParams[constants.tbreq.ALL_PARAM_TESTBOX_ID] = self._sTestBoxId; 234 234 dParams[constants.tbreq.ALL_PARAM_TESTBOX_UUID] = self._sTestBoxUuid; -
trunk/src/VBox/ValidationKit/testboxscript/testboxtasks.py
r96407 r97673 100 100 self._lock(); 101 101 self._fRunning = False; 102 self._oCv.notifyAll(); 102 self._oCv.notifyAll(); # pylint: disable=deprecated-method 103 103 self._unlock(); 104 104
Note:
See TracChangeset
for help on using the changeset viewer.