Changeset 63143 in vbox for trunk/src/VBox
- Timestamp:
- Aug 8, 2016 9:16:03 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109761
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/storage/storagecfg.py
r63031 r63143 107 107 if sPool.startswith(sPoolIdStart): 108 108 # Extract the whole name and add it to the list. 109 asItems = sPool.split(' 109 asItems = sPool.split('\t'); 110 110 lstPools.append(asItems[0]); 111 111 return lstPools; … … 124 124 if sVolume.startswith(sPool + '/' + sVolumeIdStart): 125 125 # Extract the whole name and add it to the list. 126 asItems = sVolume.split(' 126 asItems = sVolume.split('\t'); 127 127 lstVolumes.append(asItems[0]); 128 128 return lstVolumes;
Note:
See TracChangeset
for help on using the changeset viewer.