aboutsummaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
authorstepshal <nessento@openmailbox.org>2016-07-24 17:59:53 +0700
committerstepshal <nessento@openmailbox.org>2016-07-24 17:59:53 +0700
commit86689c912fe8d7c0c468e177f0f1f8b9260d4924 (patch)
tree0903ae3edd1ea35355d0fb3fa0729146bbfd5743 /docs/conf.py
parent8f8521f19eb6703d5ea5f83929c001417350893d (diff)
downloadexternal_python_setuptools-86689c912fe8d7c0c468e177f0f1f8b9260d4924.tar.gz
external_python_setuptools-86689c912fe8d7c0c468e177f0f1f8b9260d4924.tar.bz2
external_python_setuptools-86689c912fe8d7c0c468e177f0f1f8b9260d4924.zip
docs/conf.py: split multiple imports on one line.
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 07d6ad41..be010152 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -19,7 +19,8 @@
# documentation root, use os.path.abspath to make it absolute, like shown here.
# Allow Sphinx to find the setup command that is imported below, as referenced above.
-import sys, os
+import os
+import sys
sys.path.append(os.path.abspath('..'))
import setup as setup_script