diff options
author | gbrandl <devnull@localhost> | 2007-01-25 18:29:59 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-01-25 18:29:59 +0100 |
commit | 19d8c509bee3216d68419d27f34d00d151454e92 (patch) | |
tree | 2270c870264f4fb2194d161122a25edd4a0a9b48 /pygments/formatters/__init__.py | |
parent | 4d862a0197bee61cd5cfd429ce39d11dbfae6662 (diff) | |
download | pygments-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__.py | 2 |
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) |