Changeset 84921 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Jun 23, 2020 8:30:13 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138793
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r84920 r84921 2253 2253 abBuf = abBuf.tobytes(); 2254 2254 sBuf = abBuf.decode("utf-8"); 2255 if isinstance(abBuf, buffer): 2255 if sys.version_info <= (2, 7): 2256 if isinstance(abBuf, buffer): # pylint: disable=undefined-variable (for 3.0+) 2256 2257 sBuf = str(abBuf); 2257 2258 for sLine in sBuf.splitlines():
Note:
See TracChangeset
for help on using the changeset viewer.