summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorDražen Odobašić <dodobas@candela-it.com>2015-09-11 19:33:12 -0400
committerTim Graham <timograham@gmail.com>2015-09-12 11:40:50 -0400
commitb1e33ceceda1e75ff68c7deed8f6659683a195d3 (patch)
treee4e446f69194f2dc3c9c7ee3ecf48290ea8d4d31 /docs/conf.py
parent84b0a8d2aad042fb573df5055b6153770d0929ac (diff)
Fixed #23395 -- Limited line lengths to 119 characters.
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py
index a8006e2f94..10caf0ce8a 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -272,9 +272,13 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
-man_pages = [
- ('ref/django-admin', 'django-admin', 'Utility script for the Django Web framework', ['Django Software Foundation'], 1),
-]
+man_pages = [(
+ 'ref/django-admin',
+ 'django-admin',
+ 'Utility script for the Django Web framework',
+ ['Django Software Foundation'],
+ 1
+), ]
# -- Options for Texinfo output ------------------------------------------------