SF.net SVN: docutils:[9665 ] trunk/docutils/docutils/w riters/manpage.py
grubert--- via Docutils-checkins <[email protected]>
| Newsgroups | gmane.text.docutils.cvs |
|---|---|
| Message-ID | <[email protected]> |
Revision: 9665
http://sourceforge.net/p/docutils/code/9665
Author: grubert
Date: 2024-04-28 11:55:46 +0000 (Sun, 28 Apr 2024)
Log Message:
-----------
Remove unnecessary parens
Modified Paths:
--------------
trunk/docutils/docutils/writers/manpage.py
Modified: trunk/docutils/docutils/writers/manpage.py
===================================================================
--- trunk/docutils/docutils/writers/manpage.py 2024-04-27 20:59:08 UTC (rev 9664)
+++ trunk/docutils/docutils/writers/manpage.py 2024-04-28 11:55:46 UTC (rev 9665)
@@ -59,7 +59,7 @@
# Define two macros so man/roff can calculate the
# indent/unindent margins by itself
-MACRO_DEF = (r""".
+MACRO_DEF = r""".
.nr rst2man-indent-level 0
.
.de1 rstReportMargin
@@ -86,7 +86,7 @@
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
-""")
+"""
class Writer(writers.Writer):
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.