1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: =?utf-8?q?Fr=C3=A9d=C3=A9ric_Bonnard?= <frediz@debian.org>
Date: Mon, 9 Jul 2018 17:21:23 +0200
Subject: Create pysassc man page
This patch intends to create a separate man page for the pysassc command line
utility, instead of having all the manual in the library's man page.
---
docs/conf.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -226,8 +226,10 @@
# (source start file, name, description, authors, manual section).
man_pages = [
(
- 'index', 'libsass', u'libsass Documentation',
- [u'Hong Minhee'], 1,
+ 'index', 'libsass', u'libsass Documentation', [u'Hong Minhee'], 1,
+ ),
+ (
+ 'pysassc', 'pysassc', u'pysassc Documentation', [u'Hong Minhee'], 1,
),
]
|