Changeset 84271 in vbox
- Timestamp:
- May 12, 2020 2:39:15 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/base.py
r84100 r84271 630 630 oRes = re.match(r'^.*[+-](\d\d):(\d\d)$', sValue); 631 631 if oRes is not None: 632 if int(oRes.group( 6)) > 12 or int(oRes.group(7)) >= 60:632 if int(oRes.group(1)) > 12 or int(oRes.group(2)) >= 60: 633 633 return (sValue, 'Invalid timezone offset.'); 634 634 sStripped = sValue[:-6];
Note:
See TracChangeset
for help on using the changeset viewer.