summaryrefslogtreecommitdiff
path: root/pygments/formatters/html.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2007-10-14 10:14:07 +0200
committergbrandl <devnull@localhost>2007-10-14 10:14:07 +0200
commitfab2810cb986997bb5bca2c2a8b6ca846e364321 (patch)
tree928372a487109a93b9feb9649e14a2f2d9ac16f8 /pygments/formatters/html.py
parent22737bafe6a568f626a5dd49ab53d947c64e2bbf (diff)
downloadpygments-fab2810cb986997bb5bca2c2a8b6ca846e364321.tar.gz
Fix a bug in the Python lexer and a bug in the HTML formatter.
Diffstat (limited to 'pygments/formatters/html.py')
-rw-r--r--pygments/formatters/html.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/formatters/html.py b/pygments/formatters/html.py
index 07045ef6..e8c80325 100644
--- a/pygments/formatters/html.py
+++ b/pygments/formatters/html.py
@@ -55,7 +55,7 @@ def _get_ttype_class(ttype):
CSSFILE_TEMPLATE = '''\
td.linenos { background-color: #f0f0f0; padding-right: 10px; }
span.lineno { background-color: #f0f0f0; padding: 0 5px 0 5px; }
-pre { line-height: 125%; }
+pre { line-height: 125%%; }
%(styledefs)s
'''