Changeset 97401 in vbox for trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
- Timestamp:
- Nov 4, 2022 1:51:55 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r97395 r97401 71 71 xrange = range; # pylint: disable=redefined-builtin,invalid-name 72 72 73 def limitString(sString, cLimit = 32):73 def limitString(sString, cLimit = 128): 74 74 """ 75 75 Returns a string with ellipsis ("...") when exceeding the specified limit. 76 Useful for toning down logging. By default strings will be shortened at 32characters.76 Useful for toning down logging. By default strings will be shortened at 128 characters. 77 77 """ 78 78 if not isinstance(sString, str):
Note:
See TracChangeset
for help on using the changeset viewer.