Changeset 61149 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 24, 2016 1:54:00 AM (9 years ago)
- Location:
- trunk/src/VBox/ValidationKit/testmanager/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/base.py
r56761 r61149 274 274 (oNewValue, sError) = self.validateStr( oValue, aoNilValues = aoNilValues, fAllowNull = fAllowNull, 275 275 cchMin = getattr(self, 'kcchMin_' + sAttr, 0), 276 cchMax = getattr(self, 'kcchMax_' + sAttr, 4096)); 276 cchMax = getattr(self, 'kcchMax_' + sAttr, 4096), 277 fAllowUnicodeSymbols = getattr(self, 'kfAllowUnicode_' + sAttr, False) ); 277 278 ## @todo al. 278 279 elif sPrefix == 'aid': -
trunk/src/VBox/ValidationKit/testmanager/core/vcsrevisions.py
r56295 r61149 51 51 52 52 kasAllowNullAttributes = [ ]; 53 kfAllowUnicode_sMessage = True; 53 54 54 55 def __init__(self): … … 160 161 dDataErrors = oData.validateAndConvert(self._oDb); 161 162 if len(dDataErrors) > 0: 162 raise TMExceptionBase('Invalid data passed to add CvsRevision(): %s' % (dDataErrors,));163 raise TMExceptionBase('Invalid data passed to addVcsRevision(): %s' % (dDataErrors,)); 163 164 164 165 # Does it already exist?
Note:
See TracChangeset
for help on using the changeset viewer.