- Timestamp:
- May 21, 2015 11:42:45 AM (10 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r55977 r56000 2635 2635 else: 2636 2636 desc = "" 2637 cmdAnyVm(ctx, mach, lambda ctx, mach, console, args: progressBar(ctx, mach.takeSnapshot(name, desc, true)[ -1]))2637 cmdAnyVm(ctx, mach, lambda ctx, mach, console, args: progressBar(ctx, mach.takeSnapshot(name, desc, true)[1])) 2638 2638 return 0 2639 2639 -
trunk/src/VBox/ValidationKit/testdriver/vboxwrappers.py
r55978 r56000 2250 2250 self.o.console.pause(); 2251 2251 if self.fpApiVer >= 5.0: 2252 oProgressCom = self.o.machine.takeSnapshot(sName, sDescription, True)[-1];2252 (oProgressCom, _id) = self.o.machine.takeSnapshot(sName, sDescription, True); 2253 2253 else: 2254 2254 oProgressCom = self.o.console.takeSnapshot(sName, sDescription);
Note:
See TracChangeset
for help on using the changeset viewer.