diff options
author | Martin Vilcans <martin@librador.com> | 2011-11-28 00:54:30 +0100 |
---|---|---|
committer | Martin Vilcans <martin@librador.com> | 2011-11-28 00:54:30 +0100 |
commit | f7746d7f32eb3b8ce0810dc046d63ae5895c24e7 (patch) | |
tree | 2a55245e2617a506dce043c429997e5dae9141e1 | |
parent | bba2e3d43d1dfa268f68e4bba9173d14d4813bc2 (diff) | |
download | screenplain-f7746d7f32eb3b8ce0810dc046d63ae5895c24e7.tar.gz |
Cleaned up a little CSS.
-rw-r--r-- | screenplain/export/html.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/screenplain/export/html.py b/screenplain/export/html.py index c5d08be..fe3de9b 100644 --- a/screenplain/export/html.py +++ b/screenplain/export/html.py @@ -41,12 +41,12 @@ def format_dialog(dialog, out): def format_dual(dual, out): out.write( - '<div class="left dialog">' + '<div class="left">' ) format_dialog(dual.left, out) out.write( '</div>' - '<div class="right dialog">' + '<div class="right">' ) format_dialog(dual.right, out) out.write( |