aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Blöcker <mail@kaibloecker.de>2014-03-03 03:33:09 +0100
committerKai Blöcker <mail@kaibloecker.de>2014-03-03 03:33:09 +0100
commitb0dac73a8899d6ad5db3564202f566ddb963b446 (patch)
tree62ce4cf94e93dabfe53f364599f84384e47e2b93
parentd0c5183b4773e9dfac7113b24b492e0826c36bac (diff)
downloadscreenplain-b0dac73a8899d6ad5db3564202f566ddb963b446.tar.gz
fixed p a r e n t h e t i c a l bug
-rw-r--r--screenplain/export/html.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/screenplain/export/html.py b/screenplain/export/html.py
index fa02acd..b987d81 100644
--- a/screenplain/export/html.py
+++ b/screenplain/export/html.py
@@ -115,7 +115,7 @@ class Formatter(object):
self.out.write(to_html(dialog.character))
for parenthetical, text in dialog.blocks:
- classes = 'parenthetical' if parenthetical else None
+ classes = ['parenthetical'] if parenthetical else None
with self._tag('p', classes=classes):
self.out.write(to_html(text))