I doubt ElementTree is the thing to use for this. But assuming you have strong reasons for using it maybe you could try stripping the root tag from the fragment:
re.sub(r'(^<%s\b.*?>|%s\b.*?>$)' % (element.tag, element.tag), '', ElementTree.tostring(element))