- Timestamp:
- May 17, 2010 12:04:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r29524 r29537 191 191 matches.append(word) 192 192 193 194 193 try: 195 194 for m in getMachines(self.ctx, False, True): … … 525 524 526 525 def cmdExistingVm(ctx,mach,cmd,args): 526 session = None 527 527 try: 528 session = ctx['global'].openMachineSession(mach.id) 528 vb = ctx['vb'] 529 session = ctx['mgr'].getSessionObject(vb) 530 vb.openExistingSession(session, mach.id) 529 531 except Exception,e: 530 532 printErr(ctx, "Session to '%s' not open: %s" %(mach.name,str(e)))
Note:
See TracChangeset
for help on using the changeset viewer.