Changeset 61224 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 27, 2016 3:21:28 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/webui/wuihlpform.py
r61223 r61224 177 177 else: sValue = sValue.strip(); 178 178 179 cRows = sValue.count('\n') + ( sValue[-1] != '\n');179 cRows = sValue.count('\n') + (not sValue.endswith('\n')); 180 180 if cRows * 80 < len(sValue): 181 181 cRows += 2;
Note:
See TracChangeset
for help on using the changeset viewer.