fix empty text bug

This commit is contained in:
Alex Zhang 2016-08-12 12:30:07 +08:00
parent 7e0be7ef6c
commit a97e16f8ee

View File

@ -181,6 +181,7 @@ def ReadCommentsBilibili(f, fontsize):
p = str(comment.getAttribute('p')).split(',')
assert len(p) >= 5
assert p[1] in ('1', '4', '5', '6', '7', '8')
if comment.childNodes.length > 0:
if p[1] in ('1', '4', '5', '6'):
c = str(comment.childNodes[0].wholeText).replace('/n', '\n')
size = int(p[2])*fontsize/25.0