From eb96cd2053c99511cf6441b4d46286d23ff6e88d Mon Sep 17 00:00:00 2001 From: Star Brilliant Date: Sat, 9 Nov 2013 18:56:00 +0800 Subject: [PATCH] Fix \n issue --- danmaku2ass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/danmaku2ass.py b/danmaku2ass.py index 2ea48c7..ccdc698 100755 --- a/danmaku2ass.py +++ b/danmaku2ass.py @@ -151,7 +151,7 @@ def ReadCommentsBilibili(f, fontsize): p = str(comment.getAttribute('p')).split(',') assert len(p) >= 5 assert p[1] in ('1', '4', '5') - c = str(comment.childNodes[0].wholeText).replace('/n', '\\n') + c = str(comment.childNodes[0].wholeText).replace('/n', '\n') size = int(p[2])*fontsize/25.0 yield (float(p[0]), int(p[4]), i, c, {'1': 0, '4': 2, '5': 1}[p[1]], int(p[3]), size, (c.count('\n')+1)*size, CalculateLength(c)*size) except (AssertionError, AttributeError, IndexError, TypeError, ValueError):