Changeset 67049 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 23, 2017 5:48:32 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r67048 r67049 2510 2510 or (self.fpApiVer == 4.3 and not hasattr(self.oVBoxMgr, 'getSessionObject')): 2511 2511 oSession = self.oVBoxMgr.mgr.getSessionObject(self.oVBox); # pylint: disable=E1101 2512 elif self.fpApiVer < 5.2 \ 2513 or (self.fpApiVer == 5.2 and hasattr(self.oVBoxMgr, 'vbox')): 2514 oSession = self.oVBoxMgr.getSessionObject(self.oVBox); # pylint: disable=E1101 2512 2515 else: 2513 oSession = self.oVBoxMgr.getSessionObject( self.oVBox);# pylint: disable=E11012516 oSession = self.oVBoxMgr.getSessionObject(); # pylint: disable=E1101 2514 2517 if self.fpApiVer < 3.3: 2515 2518 oProgress = self.oVBox.openRemoteSession(oSession, sUuid, sType, sEnv);
Note:
See TracChangeset
for help on using the changeset viewer.