aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-07-24 09:55:47 -0400
committerGitHub <noreply@github.com>2016-07-24 09:55:47 -0400
commitbf77e33dbd86619133bb65f056b4289fa2eae821 (patch)
tree0903ae3edd1ea35355d0fb3fa0729146bbfd5743
parent8f8521f19eb6703d5ea5f83929c001417350893d (diff)
parent86689c912fe8d7c0c468e177f0f1f8b9260d4924 (diff)
downloadexternal_python_setuptools-bf77e33dbd86619133bb65f056b4289fa2eae821.tar.gz
external_python_setuptools-bf77e33dbd86619133bb65f056b4289fa2eae821.tar.bz2
external_python_setuptools-bf77e33dbd86619133bb65f056b4289fa2eae821.zip
Merge pull request #678 from stepshal/split_imports
docs/conf.py: split multiple imports on one line.
-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