Changeset 71153 in vbox for trunk/src/VBox/ValidationKit/testmanager/batch
- Timestamp:
- Feb 28, 2018 2:47:23 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121048
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/batch/vcs_import.py
r70660 r71153 118 118 # Parse the XML and add the entries to the database. 119 119 oParser = ET.XMLParser(target = ET.TreeBuilder(), encoding = 'utf-8'); 120 oParser.feed(sLogXml );120 oParser.feed(sLogXml.encode('utf-8')); # does its own decoding and processOutputChecked always gives us decoded utf-8 now. 121 121 oRoot = oParser.close(); 122 122 … … 128 128 if sMessage == '': 129 129 sMessage = ' '; 130 elif len(sMessage) > VcsRevisionData.kcchMax_sMessage: 131 sMessage = sMessage[:VcsRevisionData.kcchMax_sMessage - 4] + ' ...'; 130 132 if not self.oConfig.fQuiet: 131 133 print('sDate=%s iRev=%u sAuthor=%s sMsg[%s]=%s' % (sDate, iRevision, sAuthor, type(sMessage).__name__, sMessage));
Note:
See TracChangeset
for help on using the changeset viewer.