diff options
| author | Mathieu Pillard <m.pillard@liberation.fr> | 2012-07-17 15:24:39 +0200 |
|---|---|---|
| committer | Mathieu Pillard <m.pillard@liberation.fr> | 2012-07-17 15:24:39 +0200 |
| commit | 73f8127b0f3f094e63f30f06e96c11ca51811090 (patch) | |
| tree | 802f762f24b2cf47443f7324768c17f7298cb4c5 /docs/conf.py | |
| parent | 3723a67bf4e7c3420823b0e49cfc1c50c9333b5d (diff) | |
| download | django-compressor-73f8127b0f3f094e63f30f06e96c11ca51811090.tar.gz | |
Fix PEP8 errors reported by the new flake8 version (except E128, which we ignore for the time being)
Diffstat (limited to 'docs/conf.py')
| -rw-r--r-- | docs/conf.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py index 4ed02a2..ffa6243 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,7 +11,8 @@ # All configuration values have a default; values that are commented out # serve to show the default. -import sys, os +import sys +import os # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -182,8 +183,8 @@ htmlhelp_basename = 'django-compressordoc' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('index', 'django-compressor.tex', u'Django Compressor Documentation', - u'Django Compressor authors', 'manual'), + ('index', 'django-compressor.tex', u'Django Compressor Documentation', + u'Django Compressor authors', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of |
