diff options
-rw-r--r-- | screenplain/export/html.py | 2 |
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)) |