Changeset 65746 in vbox for trunk/src/VBox
- Timestamp:
- Feb 10, 2017 6:40:34 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 113461
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/storage/storagecfg.py
r65731 r65746 100 100 """ 101 101 lstPools = None; 102 fRc, sOutput = oExec.execBinary('zpool', ('list', '-H'));102 fRc, sOutput, _ = oExec.execBinary('zpool', ('list', '-H')); 103 103 if fRc: 104 104 lstPools = []; … … 117 117 """ 118 118 lstVolumes = None; 119 fRc, sOutput = oExec.execBinary('zfs', ('list', '-H'));119 fRc, sOutput, _ = oExec.execBinary('zfs', ('list', '-H')); 120 120 if fRc: 121 121 lstVolumes = [];
Note:
See TracChangeset
for help on using the changeset viewer.