summaryrefslogtreecommitdiff
path: root/pygments/formatters/__init__.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2007-01-25 18:29:59 +0100
committergbrandl <devnull@localhost>2007-01-25 18:29:59 +0100
commit19d8c509bee3216d68419d27f34d00d151454e92 (patch)
tree2270c870264f4fb2194d161122a25edd4a0a9b48 /pygments/formatters/__init__.py
parent4d862a0197bee61cd5cfd429ce39d11dbfae6662 (diff)
downloadpygments-19d8c509bee3216d68419d27f34d00d151454e92.tar.gz
[svn] Added using(state=x) and RST lexer by Tim Hatch.
Diffstat (limited to 'pygments/formatters/__init__.py')
-rw-r--r--pygments/formatters/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/formatters/__init__.py b/pygments/formatters/__init__.py
index 8aefe103..d3a66366 100644
--- a/pygments/formatters/__init__.py
+++ b/pygments/formatters/__init__.py
@@ -24,7 +24,7 @@ def _doc_desc(obj):
res = []
for line in obj.__doc__.strip().splitlines():
if line.strip():
- res.append(line.strip())
+ res.append(" " + line.strip())
else:
break
return ''.join(res)