Switch to side-by-side view
--- a/Allura/allura/scripts/trac_export.py +++ b/Allura/allura/scripts/trac_export.py @@ -155,7 +155,7 @@ res = [] for comment in d['entries']: c = {} - c['submitter'] = comment.author + c['submitter'] = getattr(comment, 'author', None) c['date'] = comment.updated_parsed c['comment'] = html2text(comment.summary) c['class'] = 'COMMENT'